summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-07-03 04:23:30 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-07-03 04:23:30 (GMT)
commite13f8f3cabda31742beba3dc9e5e170d7bbdbb88 (patch)
tree6a38a8202924e2cc983b91490f32c571bf07ce45 /Misc
parentb32b998bf7ccc8718f1f086f2e3d2658f2e5b224 (diff)
downloadcpython-e13f8f3cabda31742beba3dc9e5e170d7bbdbb88.zip
cpython-e13f8f3cabda31742beba3dc9e5e170d7bbdbb88.tar.gz
cpython-e13f8f3cabda31742beba3dc9e5e170d7bbdbb88.tar.bz2
Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines.
Patch by Benno Leslie and Yury Selivanov.
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 50b1d0e..a1563df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
used in types.coroutine to be instance of collections.abc.Generator;
inspect.isawaitable was removed (use collections.abc.Awaitable).
+- Issue #24450: Add gi_yieldfrom to generators and cr_await to coroutines.
+ Contributed by Benno Leslie and Yury Selivanov.
+
Library
-------