mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
asyncio.tasks.gather: Fix docstring
This commit is contained in:
parent
c72e638643
commit
f317cb7a20
1 changed files with 1 additions and 1 deletions
|
@ -555,7 +555,7 @@ def gather(*coros_or_futures, loop=None, return_exceptions=False):
|
|||
All futures must share the same event loop. If all the tasks are
|
||||
done successfully, the returned future's result is the list of
|
||||
results (in the order of the original sequence, not necessarily
|
||||
the order of results arrival). If *result_exception* is True,
|
||||
the order of results arrival). If *return_exceptions* is True,
|
||||
exceptions in the tasks are treated the same as successful
|
||||
results, and gathered in the result list; otherwise, the first
|
||||
raised exception will be immediately propagated to the returned
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue