diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-30 22:25:36 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-30 22:25:36 (GMT) |
commit | 88632d72f23a36e4728b116376883a4a3ac8388e (patch) | |
tree | 16860506488b6822d474b220efe1d31a9951afef | |
parent | a74b5e59af6b4271eac7953771e7d3346e76b058 (diff) | |
download | cpython-88632d72f23a36e4728b116376883a4a3ac8388e.zip cpython-88632d72f23a36e4728b116376883a4a3ac8388e.tar.gz cpython-88632d72f23a36e4728b116376883a4a3ac8388e.tar.bz2 |
Note removal of inspect.isawaitable() in the NEWS file
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 ------- |