summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-22 19:54:16 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-22 19:54:16 (GMT)
commitb00b596c053cf21826b5fe342be0354333a102f5 (patch)
treebc6ae02e0f9e6bad52c6373de7f6c6ee4d76df82 /Misc/NEWS
parentfcd9f222385c7855241a3f6bfe84b454e2373cdf (diff)
parent81a5855a2739797a9a41e03acecf9746baa3e882 (diff)
downloadcpython-b00b596c053cf21826b5fe342be0354333a102f5.zip
cpython-b00b596c053cf21826b5fe342be0354333a102f5.tar.gz
cpython-b00b596c053cf21826b5fe342be0354333a102f5.tar.bz2
Issue #11714: Use 'with' statements to assure a Semaphore releases a
condition variable. Original patch by Thomas Rachel.
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 0e1ebac..92c6043 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@ Core and Builtins
Library
-------
+- Issue #11714: Use 'with' statements to assure a Semaphore releases a
+ condition variable. Original patch by Thomas Rachel.
+
- Issue #16624: `subprocess.check_output` now accepts an `input` argument,
allowing the subprocess's stdin to be provided as a (byte) string.
Patch by Zack Weinberg.