summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-04 17:26:01 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-04 17:26:01 (GMT)
commit037077fe0362bfddd4a7723674ef39e8dcf1934a (patch)
tree27aa42ca01de2ad637e95ee26068f9e46076772f /Misc
parent8f94754d3ab6e9b27932a5f870f3500ca8e3ed84 (diff)
downloadcpython-037077fe0362bfddd4a7723674ef39e8dcf1934a.zip
cpython-037077fe0362bfddd4a7723674ef39e8dcf1934a.tar.gz
cpython-037077fe0362bfddd4a7723674ef39e8dcf1934a.tar.bz2
Merged revisions 84489 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84489 | antoine.pitrou | 2010-09-04 19:21:57 +0200 (sam., 04 sept. 2010) | 4 lines Issue #7736: Release the GIL around calls to opendir() and closedir() in the posix module. Patch by Marcin Bachry. ........
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 bec7771..b5c4725 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -474,6 +474,9 @@ Library
Extension Modules
-----------------
+- Issue #7736: Release the GIL around calls to opendir() and closedir()
+ in the posix module. Patch by Marcin Bachry.
+
- Issue #4835: make PyLong_FromSocket_t() and PyLong_AsSocket_t() private
to the socket module, and fix the width of socket descriptors to be
correctly detected under 64-bit Windows.