summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@gmail.com>2017-03-03 01:07:11 (GMT)
committerGitHub <noreply@github.com>2017-03-03 01:07:11 (GMT)
commitba7e1f9a4e06c0b4ad594fd64edcaf7292515820 (patch)
tree97e42c3e5ec67118d5953fcf3c86a0254340bcd1 /Misc
parentcdf037c212675b11c10c4d0d76496f5d81154882 (diff)
downloadcpython-ba7e1f9a4e06c0b4ad594fd64edcaf7292515820.zip
cpython-ba7e1f9a4e06c0b4ad594fd64edcaf7292515820.tar.gz
cpython-ba7e1f9a4e06c0b4ad594fd64edcaf7292515820.tar.bz2
bpo-29703: asyncio: Fix creating new event loops in child processes. (#404)
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 9da682b..68cb711 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -256,6 +256,9 @@ Extension Modules
Library
-------
+- bpo-29703: Fix asyncio to support instantiation of new event loops
+ in child processes.
+
- bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (or any other
exception) to exception(s) raised in the dispatched methods.
Patch by Petr Motejlek.