From 7436618d0f1c16718f4214d1e804f5d79e30569c Mon Sep 17 00:00:00 2001 From: "bar.harel" Date: Wed, 18 Oct 2023 02:40:07 +0100 Subject: [PATCH 1/3] . --- Lib/asyncio/tasks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py index 72f4cc07173f0a..e84b21390557be 100644 --- a/Lib/asyncio/tasks.py +++ b/Lib/asyncio/tasks.py @@ -424,8 +424,6 @@ async def wait(fs, *, timeout=None, return_when=ALL_COMPLETED): The fs iterable must not be empty. - Coroutines will be wrapped in Tasks. - Returns two sets of Future: (done, pending). Usage: From 8b9340c3d9413bb52066874df17306418ee1dda7 Mon Sep 17 00:00:00 2001 From: "bar.harel" Date: Wed, 18 Oct 2023 02:46:24 +0100 Subject: [PATCH 2/3] news --- .../next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst diff --git a/Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst b/Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst new file mode 100644 index 00000000000000..b16465a7fa353f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst @@ -0,0 +1,2 @@ +Fixed :func:`asyncio.wait` docstring, removing the deprecated coroutine +reference. Patch by Bar Harel. From 5d7a0d86300336031833f13cd7339dd65069fcef Mon Sep 17 00:00:00 2001 From: Kumar Aditya Date: Wed, 18 Oct 2023 09:44:43 +0530 Subject: [PATCH 3/3] Delete Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst --- .../next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst diff --git a/Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst b/Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst deleted file mode 100644 index b16465a7fa353f..00000000000000 --- a/Misc/NEWS.d/next/Library/2023-10-18-02-45-26.gh-issue-110961.y6IXGk.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fixed :func:`asyncio.wait` docstring, removing the deprecated coroutine -reference. Patch by Bar Harel.