summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-06-30 22:25:36 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-06-30 22:25:36 (GMT)
commit88632d72f23a36e4728b116376883a4a3ac8388e (patch)
tree16860506488b6822d474b220efe1d31a9951afef
parenta74b5e59af6b4271eac7953771e7d3346e76b058 (diff)
downloadcpython-88632d72f23a36e4728b116376883a4a3ac8388e.zip
cpython-88632d72f23a36e4728b116376883a4a3ac8388e.tar.gz
cpython-88632d72f23a36e4728b116376883a4a3ac8388e.tar.bz2
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 60b5e86..359bde8 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
-------