diff options
author | jack1142 <6032823+jack1142@users.noreply.github.com> | 2020-05-13 18:55:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 18:55:12 (GMT) |
commit | de92769d473d1c0955d36da2fc71462621326f00 (patch) | |
tree | 96299811a033b23c683f1907b4c576208f7ee619 /Doc/library/asyncio-task.rst | |
parent | fa0a66e62d087765dbc5c1b89d6149a23ecfb0a6 (diff) | |
download | cpython-de92769d473d1c0955d36da2fc71462621326f00.zip cpython-de92769d473d1c0955d36da2fc71462621326f00.tar.gz cpython-de92769d473d1c0955d36da2fc71462621326f00.tar.bz2 |
bpo-34790: add version of removal of explicit passing of coros to `asyncio.wait`'s documentation (#20008)
Diffstat (limited to 'Doc/library/asyncio-task.rst')
-rw-r--r-- | Doc/library/asyncio-task.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 6627bec..42e2b4e 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -575,7 +575,7 @@ Waiting Primitives if task in done: # Everything will work as expected now. - .. deprecated:: 3.8 + .. deprecated-removed:: 3.8 3.11 Passing coroutine objects to ``wait()`` directly is deprecated. |