Note removal of inspect.isawaitable() in the NEWS file

This commit is contained in:
Yury Selivanov 2015-06-30 18:25:36 -04:00
parent a74b5e59af
commit 88632d72f2
1 changed files with 2 additions and 1 deletions

View File

@ -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
-------