diff options
author | Bar Harel <bharel@barharel.com> | 2023-10-18 04:40:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-18 04:40:26 (GMT) |
commit | 7025844f4c79eeb7d767009c7dad606f92079911 (patch) | |
tree | 078b2e3a0524041dc7fcb24faae5bba54cbf8f6d /Lib/asyncio | |
parent | e7ae43ad7dde74e731a9d258e372d17f3b2eb893 (diff) | |
download | cpython-7025844f4c79eeb7d767009c7dad606f92079911.zip cpython-7025844f4c79eeb7d767009c7dad606f92079911.tar.gz cpython-7025844f4c79eeb7d767009c7dad606f92079911.tar.bz2 |
gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine reference (#111017)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/tasks.py | 2 |
1 files changed, 0 insertions, 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: |