summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-06-30 18:25:36 -0400
committerYury Selivanov <yselivanov@sprymix.com>2015-06-30 18:25:36 -0400
commita2be24bb33b21d92df236c893071a333057b62f0 (patch)
tree3fcec6792f95dcca0b924a7c7c5db94c46b30d2b
parent40917756159ff31326aee7dc4224d561549533aa (diff)
downloadcpython-a2be24bb33b21d92df236c893071a333057b62f0.tar.gz
Note removal of inspect.isawaitable() in the NEWS file
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 60b5e86ef7..359bde825e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,7 +24,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
-------