summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-09-19 07:46:24 (GMT)
committerGeorg Brandl <georg@python.org>2009-09-19 07:46:24 (GMT)
commit3ad2847c0156db8838e0e531b4fb2e67ca0b153a (patch)
tree38da112b9805f1f65a5937c1363c271fadc28980 /Misc
parent52197062b04e8a758eb7dc8c53733cc7cb8b27e9 (diff)
downloadcpython-3ad2847c0156db8838e0e531b4fb2e67ca0b153a.zip
cpython-3ad2847c0156db8838e0e531b4fb2e67ca0b153a.tar.gz
cpython-3ad2847c0156db8838e0e531b4fb2e67ca0b153a.tar.bz2
Merged revisions 74943 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74943 | georg.brandl | 2009-09-19 09:35:07 +0200 (Sa, 19 Sep 2009) | 1 line #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 5848fb3..8fc2f44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -262,6 +262,9 @@ Library
Extension Modules
-----------------
+- Issue #6944: Fix a SystemError when socket.getnameinfo() was called
+ with something other than a tuple as first argument.
+
- Issue #6848: Fix curses module build failure on OS X 10.6.
- Fix expat to not segfault with specially crafted input.