From 7025844f4c79eeb7d767009c7dad606f92079911 Mon Sep 17 00:00:00 2001 From: Bar Harel Date: Wed, 18 Oct 2023 05:40:26 +0100 Subject: gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine reference (#111017) Co-authored-by: Kumar Aditya --- Lib/asyncio/tasks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py index 72f4cc0..e84b213 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: -- cgit v0.12