summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@gmail.com>2017-03-03 03:16:33 (GMT)
committerGitHub <noreply@github.com>2017-03-03 03:16:33 (GMT)
commit8d26aa930c0123933a1ceb12fceba4f5aef4e95e (patch)
tree451f0306af10c7536354524f1792944bf12067c4 /Misc
parentba7e1f9a4e06c0b4ad594fd64edcaf7292515820 (diff)
downloadcpython-8d26aa930c0123933a1ceb12fceba4f5aef4e95e.zip
cpython-8d26aa930c0123933a1ceb12fceba4f5aef4e95e.tar.gz
cpython-8d26aa930c0123933a1ceb12fceba4f5aef4e95e.tar.bz2
bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. (#406)
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 68cb711..cc896e1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -256,6 +256,9 @@ Extension Modules
Library
-------
+- bpo-29271: Fix Task.current_task and Task.all_tasks implemented in C
+ to accept None argument as their pure Python implementation.
+
- bpo-29703: Fix asyncio to support instantiation of new event loops
in child processes.