summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-09 23:39:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-09 23:39:31 (GMT)
commitb73caab4362e38e4a55af6a04fe0740b3c67cf69 (patch)
treed6050f09f60ad844433decd4483b2e5112405330 /Misc
parent5af4f4b9832411476caf8cf3f571f974056d4f1b (diff)
downloadcpython-b73caab4362e38e4a55af6a04fe0740b3c67cf69.zip
cpython-b73caab4362e38e4a55af6a04fe0740b3c67cf69.tar.gz
cpython-b73caab4362e38e4a55af6a04fe0740b3c67cf69.tar.bz2
Issue #6915: Under Windows, os.listdir() didn't release the Global
Interpreter Lock around all system calls. Original patch by Ryan Kelly.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 41d314e..6f689ad 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -419,6 +419,7 @@ Jacob Kaplan-Moss
Lou Kates
Hiroaki Kawai
Sebastien Keim
+Ryan Kelly
Robert Kern
Randall Kern
Magnus Kessler
diff --git a/Misc/NEWS b/Misc/NEWS
index ef35ddc..b89f89d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Extensions
----------
+- Issue #6915: Under Windows, os.listdir() didn't release the Global
+ Interpreter Lock around all system calls. Original patch by Ryan Kelly.
+
- Issue #8524: Add a detach() method to socket objects, so as to put the
socket into the closed state without closing the underlying file
descriptor.