summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-22 19:51:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-22 19:51:43 (GMT)
commit81a5855a2739797a9a41e03acecf9746baa3e882 (patch)
treefc5d3e9692e9924c580501773827ef2d30f56786 /Misc
parentd4cb4b74517922a4594b252edadb35222e81e47d (diff)
downloadcpython-81a5855a2739797a9a41e03acecf9746baa3e882.zip
cpython-81a5855a2739797a9a41e03acecf9746baa3e882.tar.gz
cpython-81a5855a2739797a9a41e03acecf9746baa3e882.tar.bz2
Issue #11714: Use 'with' statements to assure a Semaphore releases a
condition variable. Original patch by Thomas Rachel.
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 9961aa5..36adf7d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -970,6 +970,7 @@ Fernando Pérez
Pierre Quentel
Brian Quinlan
Anders Qvist
+Thomas Rachel
Jérôme Radix
Burton Radons
Jeff Ramnani
diff --git a/Misc/NEWS b/Misc/NEWS
index e71b6ed..60945c6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
Library
-------
+- Issue #11714: Use 'with' statements to assure a Semaphore releases a
+ condition variable. Original patch by Thomas Rachel.
+
- Issue #17795: Reverted backwards-incompatible change in SysLogHandler with
Unix domain sockets.