gh-110961: Fixed asyncio.wait docstring to remove deprecated coroutine reference (#111017)

Co-authored-by: Kumar Aditya <kumaraditya@python.org>
This commit is contained in:
Bar Harel 2023-10-18 05:40:26 +01:00 committed by GitHub
parent e7ae43ad7d
commit 7025844f4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View 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: