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

PyArg_ParseTupleAndKeywords() and closes bug #113807.
This commit is contained in:
Marc-André Lemburg 2000-09-08 11:49:37 +00:00
parent 93e5d54bfd
commit bbcf2a7c81
1 changed files with 2 additions and 0 deletions

View File

@ -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 == '|')