From: Yury Selivanov Date: Tue, 30 Jun 2015 22:25:36 +0000 (-0400) Subject: Note removal of inspect.isawaitable() in the NEWS file X-Git-Tag: v3.5.0b3~29 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88632d72f23a36e4728b116376883a4a3ac8388e;p=python Note removal of inspect.isawaitable() in the NEWS file --- 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 -------