commit | 4caef5c7e2f3b0de2725d83e8eab20f5dd3d6195 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon Dec 22 20:51:15 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Mon Dec 22 20:51:15 2008 +0000 |
tree | 68a77c855b6458c9a756b7c1fbc89c66dc4867e4 | |
parent | 1c3978525678ea52e601e4d8571676385f767e0f [diff] [blame] |
fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|'
diff --git a/Python/getargs.c b/Python/getargs.c index 9d1f0b2..544948b 100644 --- a/Python/getargs.c +++ b/Python/getargs.c
@@ -1601,7 +1601,7 @@ } } - if (!IS_END_OF_FORMAT(*format)) { + if (!IS_END_OF_FORMAT(*format) && *format != '|') { PyErr_Format(PyExc_RuntimeError, "more argument specifiers than keyword list entries " "(remaining format:'%s')", format);