bpo-34802: Fix asyncio.iscoroutine() docs (GH-9611)

(cherry picked from commit 59ee5b1293)

Co-authored-by: Yury Selivanov <yury@magic.io>
This commit is contained in:
Miss Islington (bot) 2018-09-27 12:53:18 -07:00 committed by GitHub
parent 24cb7de15d
commit 85ccedc5b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -893,8 +893,7 @@ enforced.
Return ``True`` if *obj* is a :ref:`coroutine object <coroutine>`.
This method is different from :func:`inspect.iscoroutine` because
it returns ``True`` for generator-based coroutines decorated with
:func:`@coroutine <coroutine>`.
it returns ``True`` for generator-based coroutines.
.. function:: iscoroutinefunction(func)