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

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)