summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-19 07:35:07 (GMT)
committerGeorg Brandl <georg@python.org>2009-09-19 07:35:07 (GMT)
commitab849891ef1d96c4f770fbd256b2436359146f03 (patch)
treea201a3732f3180a1a7093c84f3eb41440cedfcad /Misc
parent9db5540ec46d5163231de8ddc574c215b2384753 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8b0a678..cac78e1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.