Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f317cb7

Browse files
committed
asyncio.tasks.gather: Fix docstring
1 parent c72e638 commit f317cb7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/asyncio/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def gather(*coros_or_futures, loop=None, return_exceptions=False):
555555
All futures must share the same event loop. If all the tasks are
556556
done successfully, the returned future's result is the list of
557557
results (in the order of the original sequence, not necessarily
558-
the order of results arrival). If *result_exception* is True,
558+
the order of results arrival). If *return_exceptions* is True,
559559
exceptions in the tasks are treated the same as successful
560560
results, and gathered in the result list; otherwise, the first
561561
raised exception will be immediately propagated to the returned

0 commit comments

Comments
 (0)