Kaydet (Commit) 7d4f68c1 authored tarafından Guido van Rossum's avatar Guido van Rossum

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

üst 414fd484
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment