commit | bbcf2a7c810cf9ff8bbd7164e246e56dfdd7779c | [log] [tgz] |
---|---|---|
author | Marc-André Lemburg <mal@egenix.com> | Fri Sep 08 11:49:37 2000 +0000 |
committer | Marc-André Lemburg <mal@egenix.com> | Fri Sep 08 11:49:37 2000 +0000 |
tree | cea63fe73a08e8df89425137a53b22b78f20075e | |
parent | 93e5d54bfd1290468e127f9bd436a4409704321a [diff] |
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 0823515..3b73e41 100644 --- a/Python/getargs.c +++ b/Python/getargs.c
@@ -967,6 +967,8 @@ message = format; break; } + else if (c == 'e') + ; /* Pass */ else if (isalpha(c)) max++; else if (c == '|')