summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2017-06-09 21:07:48 (GMT)
committerGitHub <noreply@github.com>2017-06-09 21:07:48 (GMT)
commitfa7f519113fd32f432f9f52a956bbcdc542dce93 (patch)
tree566f78459461f67737b425f96947294ee41a330a /Misc/NEWS
parente89f95bfd0881a9b80c3b1430d154a77bdf5a824 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 580f579..0342c71 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.