]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine reference...
authorBar Harel <bharel@barharel.com>
Wed, 18 Oct 2023 04:40:26 +0000 (05:40 +0100)
committerGitHub <noreply@github.com>
Wed, 18 Oct 2023 04:40:26 +0000 (04:40 +0000)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Lib/asyncio/tasks.py

index 72f4cc07173f0a358787a27551f1e0551fb53897..e84b21390557beb07d0e0d9db2137a00e73ca0b2 100644 (file)
@@ -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: