summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-11-14 19:48:37 (GMT)
committerGuido van Rossum <guido@python.org>2014-11-14 19:48:37 (GMT)
commit59f0682190ba80d8796d92943c43810c120ba72d (patch)
treeb78b55216c1789e6b6b04bce821978a1cd60aae3 /Misc
parent6fd113c26cafb321ca65af7d5847bd21dd6324b7 (diff)
parente36fcde38309f116c6c06042ad80e7debb7db743 (diff)
downloadcpython-59f0682190ba80d8796d92943c43810c120ba72d.zip
cpython-59f0682190ba80d8796d92943c43810c120ba72d.tar.gz
cpython-59f0682190ba80d8796d92943c43810c120ba72d.tar.bz2
- Issue #22841: Reject coroutines in asyncio add_signal_handler().
Patch by Ludovic.Gasc.
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 ef98134..97ad428 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -183,6 +183,9 @@ Core and Builtins
Library
-------
+- Issue #22841: Reject coroutines in asyncio add_signal_handler().
+ Patch by Ludovic.Gasc.
+
- Issue #19494: Added urllib.request.HTTPBasicPriorAuthHandler. Patch by
Matej Cepl.