[Python-checkins] [3.10] bpo-46609: Update asyncio-task coroutine doc (GH-31132)

terryjreedy webhook-mailer at python.org
Fri Feb 4 14:59:48 EST 2022


https://github.com/python/cpython/commit/5603db43ba7ba5568b7516d0e28730a2bc1e1f26
commit: 5603db43ba7ba5568b7516d0e28730a2bc1e1f26
branch: 3.10
author: Terry Jan Reedy <tjreedy at udel.edu>
committer: terryjreedy <tjreedy at udel.edu>
date: 2022-02-04T14:59:23-05:00
summary:

[3.10] bpo-46609: Update asyncio-task coroutine doc (GH-31132)

@coroutine in removed in 3.11, not 3.10.

files:
M Doc/library/asyncio-task.rst

diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index 1175b0537c051..7f4cc70386157 100644
--- a/Doc/library/asyncio-task.rst
+++ b/Doc/library/asyncio-task.rst
@@ -1057,7 +1057,7 @@ Generator-based Coroutines
 .. note::
 
    Support for generator-based coroutines is **deprecated** and
-   is scheduled for removal in Python 3.10.
+   is removed in Python 3.11.
 
 Generator-based coroutines predate async/await syntax.  They are
 Python generators that use ``yield from`` expressions to await



More information about the Python-checkins mailing list