Commit bbcf2a7c authored by Marc-André Lemburg's avatar Marc-André Lemburg

This patch hopefully fixes the problem with "es#" and "es" in

PyArg_ParseTupleAndKeywords() and closes bug #113807.
parent 93e5d54b
...@@ -967,6 +967,8 @@ vgetargskeywords(PyObject *args, PyObject *keywords, char *format, ...@@ -967,6 +967,8 @@ vgetargskeywords(PyObject *args, PyObject *keywords, char *format,
message = format; message = format;
break; break;
} }
else if (c == 'e')
; /* Pass */
else if (isalpha(c)) else if (isalpha(c))
max++; max++;
else if (c == '|') else if (c == '|')
......
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