summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-08-05 17:52:33 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-08-05 17:52:33 (GMT)
commit3fc0f2d288cad93d374d98ca67aa8648e22e9d2f (patch)
treef1d725b6a47b9e2827c50cdac1f529feb0c2d325 /Misc
parent91e561aa777f861b1406f0f60f9189d3382ab431 (diff)
downloadcpython-3fc0f2d288cad93d374d98ca67aa8648e22e9d2f.zip
cpython-3fc0f2d288cad93d374d98ca67aa8648e22e9d2f.tar.gz
cpython-3fc0f2d288cad93d374d98ca67aa8648e22e9d2f.tar.bz2
Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation.
Patch by Gustavo J. A. M. Carneiro.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ac2915e..69ed31d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,9 @@ Core and Builtins
- Issue #21354: PyCFunction_New function is exposed by python DLL again.
+- Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation.
+ Patch by Gustavo J. A. M. Carneiro.
+
Library
-------