[Python-checkins] bpo-34790: add version of removal of explicit passing of coros to `asyncio.wait`'s documentation (#20008)

jack1142 webhook-mailer at python.org
Wed May 13 14:55:17 EDT 2020


https://github.com/python/cpython/commit/de92769d473d1c0955d36da2fc71462621326f00
commit: de92769d473d1c0955d36da2fc71462621326f00
branch: master
author: jack1142 <6032823+jack1142 at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-13T11:55:12-07:00
summary:

bpo-34790: add version of removal of explicit passing of coros to `asyncio.wait`'s documentation (#20008)

files:
A Misc/NEWS.d/next/Documentation/2020-05-08-20-18-55.bpo-34790.t6kW_1.rst
M Doc/library/asyncio-task.rst

diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst
index 6627bec79823a..42e2b4e2fc5b9 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.
diff --git a/Misc/NEWS.d/next/Documentation/2020-05-08-20-18-55.bpo-34790.t6kW_1.rst b/Misc/NEWS.d/next/Documentation/2020-05-08-20-18-55.bpo-34790.t6kW_1.rst
new file mode 100644
index 0000000000000..4f349adff3346
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2020-05-08-20-18-55.bpo-34790.t6kW_1.rst
@@ -0,0 +1 @@
+Add version of removal for explicit passing of coros to `asyncio.wait()`'s documentation
\ No newline at end of file



More information about the Python-checkins mailing list