diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-03 11:01:53 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-03 11:01:53 (GMT) |
commit | d0ed0db574acef68cb24bb92a2b315474c86386b (patch) | |
tree | b520b43792f3505704df91560018ca7f19f51a7e /Misc | |
parent | a9566d02a26a0e9a4b6ed76937c46da49a012bf1 (diff) | |
download | cpython-d0ed0db574acef68cb24bb92a2b315474c86386b.zip cpython-d0ed0db574acef68cb24bb92a2b315474c86386b.tar.gz cpython-d0ed0db574acef68cb24bb92a2b315474c86386b.tar.bz2 |
Merged revisions 76646 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r76646 | mark.dickinson | 2009-12-03 10:59:46 +0000 (Thu, 03 Dec 2009) | 6 lines
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
@@ -270,6 +270,9 @@ Core and Builtins C-API ----- +- Issue #7414: 'C' code wasn't being skipped properly (for keyword arguments) + in PyArg_ParseTupleAndKeywords. + - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with NUL: Bogus TypeError detail string. |