diff options
author | Georg Brandl <georg@python.org> | 2009-09-19 07:35:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-19 07:35:07 (GMT) |
commit | ab849891ef1d96c4f770fbd256b2436359146f03 (patch) | |
tree | a201a3732f3180a1a7093c84f3eb41440cedfcad /Misc | |
parent | 9db5540ec46d5163231de8ddc574c215b2384753 (diff) | |
download | cpython-ab849891ef1d96c4f770fbd256b2436359146f03.zip cpython-ab849891ef1d96c4f770fbd256b2436359146f03.tar.gz cpython-ab849891ef1d96c4f770fbd256b2436359146f03.tar.bz2 |
#6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1333,6 +1333,9 @@ C-API Extension Modules ----------------- +- Issue #6944: Fix a SystemError when socket.getnameinfo() was called + with something other than a tuple as first argument. + - Issue #6865: Fix reference counting issue in the initialization of the pwd module. |