From: Marc-André Lemburg Date: Fri, 8 Sep 2000 11:49:37 +0000 (+0000) Subject: This patch hopefully fixes the problem with "es#" and "es" in X-Git-Tag: v2.0b2~418 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bbcf2a7c810cf9ff8bbd7164e246e56dfdd7779c;p=thirdparty%2FPython%2Fcpython.git This patch hopefully fixes the problem with "es#" and "es" in PyArg_ParseTupleAndKeywords() and closes bug #113807. --- diff --git a/Python/getargs.c b/Python/getargs.c index 0823515989f8..3b73e410aeb1 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -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 == '|')