summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-04 17:21:57 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-04 17:21:57 (GMT)
commitd3ccde8a21755046cdb3f73fb11e46d1043dc076 (patch)
tree628e3fdf6d4c2cabf62a7d9bf1ebefd49ca6f697 /Misc/NEWS
parent327fd40dde2a22fd1162dfda64bc6c8c96552b71 (diff)
downloadcpython-d3ccde8a21755046cdb3f73fb11e46d1043dc076.zip
cpython-d3ccde8a21755046cdb3f73fb11e46d1043dc076.tar.gz
cpython-d3ccde8a21755046cdb3f73fb11e46d1043dc076.tar.bz2
Issue #7736: Release the GIL around calls to opendir() and closedir()
in the posix module. Patch by Marcin Bachry.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bf907a5..1433598 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -93,6 +93,9 @@ Core and Builtins
Extensions
----------
+- 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.