This patch hopefully fixes the problem with "es#" and "es" in
PyArg_ParseTupleAndKeywords() and closes bug #113807.
This commit is contained in:
parent
93e5d54bfd
commit
bbcf2a7c81
|
@ -967,6 +967,8 @@ vgetargskeywords(PyObject *args, PyObject *keywords, char *format,
|
|||
message = format;
|
||||
break;
|
||||
}
|
||||
else if (c == 'e')
|
||||
; /* Pass */
|
||||
else if (isalpha(c))
|
||||
max++;
|
||||
else if (c == '|')
|
||||
|
|
Loading…
Reference in New Issue