From: Bar Harel Date: Wed, 18 Oct 2023 04:40:26 +0000 (+0100) Subject: gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine reference... X-Git-Tag: v3.13.0a2~420 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7025844f4c79eeb7d767009c7dad606f92079911;p=thirdparty%2FPython%2Fcpython.git gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine reference (#111017) Co-authored-by: Kumar Aditya --- diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py index 72f4cc07173f..e84b21390557 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: