summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorBar Harel <bzvi7919@gmail.com>2018-02-14 09:18:11 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2018-02-14 09:18:11 (GMT)
commit5746510b7aef423fa4afc92b2abb919307b1dbb9 (patch)
treef8eb94a5cffea013abdab3f86b09abe46de6cd43 /Misc/NEWS.d/next
parent3384d38d51a2c3450e742175db5d6d638fa5d2eb (diff)
downloadcpython-5746510b7aef423fa4afc92b2abb919307b1dbb9.zip
cpython-5746510b7aef423fa4afc92b2abb919307b1dbb9.tar.gz
cpython-5746510b7aef423fa4afc92b2abb919307b1dbb9.tar.bz2
bpo-32841: Fix cancellation in awaiting asyncio.Condition (#5665)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Library/2018-02-14-00-21-24.bpo-32841.bvHDOc.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-02-14-00-21-24.bpo-32841.bvHDOc.rst b/Misc/NEWS.d/next/Library/2018-02-14-00-21-24.bpo-32841.bvHDOc.rst
new file mode 100644
index 0000000..a6d4566
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-02-14-00-21-24.bpo-32841.bvHDOc.rst
@@ -0,0 +1,2 @@
+Fixed `asyncio.Condition` issue which silently ignored cancellation after
+notifying and cancelling a conditional lock. Patch by Bar Harel.