summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-30 23:29:31 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-03-30 23:29:31 (GMT)
commit82eb5902ce169be81110c79662b772b904cd00fc (patch)
tree53aa2270a045dd78e0d4cfeef20c3ad23b18cd03 /Misc/NEWS
parentd7bf8a54787d0c3520a0788224537acab2491b38 (diff)
downloadcpython-82eb5902ce169be81110c79662b772b904cd00fc.zip
cpython-82eb5902ce169be81110c79662b772b904cd00fc.tar.gz
cpython-82eb5902ce169be81110c79662b772b904cd00fc.tar.bz2
merge in patch from tim golden to fix contextmanager support for mp.Lock()
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 b0ae319..97753ad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -199,6 +199,9 @@ Core and Builtins
Library
-------
+- Issue #5261: Patch multiprocessing's semaphore.c to support context
+ manager use: "with multiprocessing.Lock()" works now.
+
- Issue #5177: Multiprocessing's SocketListener class now uses
socket.SO_REUSEADDR on all connections so that the user no longer needs
to wait 120 seconds for the socket to expire.