summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-03 10:59:46 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-03 10:59:46 (GMT)
commitf08173bb939f3d45594cb674acb092af9cf23747 (patch)
treecd7990cb5364dcb19c0c46baa8ac042978dd29ba /Misc
parent05159c4a7b37403613772a0883bd927bb57e8060 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 93c4653..6a216ed4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.