Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Doc/library/asyncio-task.rst
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ other coroutines::
* a *coroutine object*: an object returned by calling a
*coroutine function*.

Generator-based coroutines, created with :func:`types.coroutine`, are
covered by neither term and are not supported by asyncio.


.. rubric:: Tasks

Expand Down Expand Up @@ -1220,6 +1223,10 @@ Introspection

.. versionadded:: 3.4

.. versionchanged:: 3.12
Generator-based coroutines are no longer supported, and ``False``
is returned for them.

.. _asyncio-task-obj:

Task object
Expand Down
Loading