diff options
author | Yury Selivanov <yury@magic.io> | 2017-06-09 21:07:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-09 21:07:48 (GMT) |
commit | fa7f519113fd32f432f9f52a956bbcdc542dce93 (patch) | |
tree | 566f78459461f67737b425f96947294ee41a330a /Misc/NEWS | |
parent | e89f95bfd0881a9b80c3b1430d154a77bdf5a824 (diff) | |
download | cpython-fa7f519113fd32f432f9f52a956bbcdc542dce93.zip cpython-fa7f519113fd32f432f9f52a956bbcdc542dce93.tar.gz cpython-fa7f519113fd32f432f9f52a956bbcdc542dce93.tar.bz2 |
Fix waiter cancellation in asyncio.Lock (#1031) (#2037)
Avoid a deadlock when the waiter who is about to take the lock is
cancelled
Issue #27585
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 ------- +- bpo-27585: Fix waiter cancellation in asyncio.Lock. + Patch by Mathieu Sornay. + - bpo-30418: On Windows, subprocess.Popen.communicate() now also ignore EINVAL on stdin.write() if the child process is still running but closed the pipe. |