diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-03 10:59:46 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-03 10:59:46 (GMT) |
commit | f08173bb939f3d45594cb674acb092af9cf23747 (patch) | |
tree | cd7990cb5364dcb19c0c46baa8ac042978dd29ba /Misc | |
parent | 05159c4a7b37403613772a0883bd927bb57e8060 (diff) | |
download | cpython-f08173bb939f3d45594cb674acb092af9cf23747.zip cpython-f08173bb939f3d45594cb674acb092af9cf23747.tar.gz cpython-f08173bb939f3d45594cb674acb092af9cf23747.tar.bz2 |
Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. This
was causing PyArg_ParseTupleAndKeywords(args, kwargs, "|CC", ...) to
fail with a RuntimeError. Thanks Case Van Horsen for tracking down
the source of this error.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -121,6 +121,9 @@ Core and Builtins C-API ----- +- Issue #7414: 'C' code wasn't being skipped properly (for keyword arguments) + in PyArg_ParseTupleAndKeywords. + - Issue #Add '%lld' and '%llu' support to PyString_FromFormat(V) and PyErr_Format, on machines with HAVE_LONG_LONG defined. |