diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-04-22 19:54:16 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-04-22 19:54:16 (GMT) |
commit | b00b596c053cf21826b5fe342be0354333a102f5 (patch) | |
tree | bc6ae02e0f9e6bad52c6373de7f6c6ee4d76df82 /Misc/NEWS | |
parent | fcd9f222385c7855241a3f6bfe84b454e2373cdf (diff) | |
parent | 81a5855a2739797a9a41e03acecf9746baa3e882 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |