From bbcf2a7c810cf9ff8bbd7164e246e56dfdd7779c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Fri, 8 Sep 2000 11:49:37 +0000 Subject: This patch hopefully fixes the problem with "es#" and "es" in PyArg_ParseTupleAndKeywords() and closes bug #113807. --- Python/getargs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python/getargs.c b/Python/getargs.c index 0823515..3b73e41 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 == '|') -- cgit v0.12