summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d678b464b8..6f3059f723 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,7 +46,8 @@ Core and Builtins
works only for 'async def' coroutines; inspect.iscoroutine no longer
uses collections.abc.Coroutine, it's intended to test for pure 'async def'
coroutines only; add new opcode: GET_YIELD_FROM_ITER; fix generators wrapper
- used in types.coroutine to be instance of collections.abc.Generator.
+ used in types.coroutine to be instance of collections.abc.Generator;
+ inspect.isawaitable was removed (use collections.abc.Awaitable).
Library
-------