Oops -- '(' is also a legal start character of a new format...

This commit is contained in:
Guido van Rossum 1997-12-19 04:25:23 +00:00
parent 414fd4843a
commit 7d4f68c15f
1 changed files with 1 additions and 0 deletions

View File

@ -258,6 +258,7 @@ vgetargs1(args, format, p_va, compat)
}
if (*format != '\0' && !isalpha(*format) &&
*format != '(' &&
*format != '|' && *format != ':' && *format != ';') {
PyErr_Format(PyExc_SystemError,
"bad format string: %s", formatsave);