diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-30 22:19:01 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-30 22:19:01 (GMT) |
commit | a74b5e59af6b4271eac7953771e7d3346e76b058 (patch) | |
tree | b677c97fc2bda02f303c62c4c8545948b2fc00e6 /Doc/whatsnew | |
parent | 86cd7d6b756bb0f99b7854c75dfcd24e1ec3bdbc (diff) | |
download | cpython-a74b5e59af6b4271eac7953771e7d3346e76b058.zip cpython-a74b5e59af6b4271eac7953771e7d3346e76b058.tar.gz cpython-a74b5e59af6b4271eac7953771e7d3346e76b058.tar.bz2 |
Issue #24400: Remove inspect.isawaitable().
isawaitable() was added before collections.abc.Awaitable; now,
with Awaitable, it is no longer needed (we don't have ishashable()
or isiterable() methods in the inspect module either).
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index abc1b8d..63a5ff5 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -527,9 +527,8 @@ inspect * New argument ``follow_wrapped`` for :func:`inspect.signature`. (Contributed by Yury Selivanov in :issue:`20691`.) -* New :func:`~inspect.iscoroutine`, :func:`~inspect.iscoroutinefunction`, - and :func:`~inspect.isawaitable` functions. (Contributed by Yury Selivanov - in :issue:`24017`.) +* New :func:`~inspect.iscoroutine` and :func:`~inspect.iscoroutinefunction` + functions. (Contributed by Yury Selivanov in :issue:`24017`.) * New :func:`~inspect.getcoroutinelocals` and :func:`~inspect.getcoroutinestate` functions. (Contributed by Yury Selivanov in :issue:`24400`.) |