summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-06 17:03:53 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-02-06 17:03:53 (GMT)
commitf317cb7a2054c878f98aab38411d43fb179e53fd (patch)
treed1755cfa9fef94418860683a83a53634f9d7d9d4 /Lib
parentc72e638643e0528f98ec28ad1617b466f9c0c575 (diff)
downloadcpython-f317cb7a2054c878f98aab38411d43fb179e53fd.zip
cpython-f317cb7a2054c878f98aab38411d43fb179e53fd.tar.gz
cpython-f317cb7a2054c878f98aab38411d43fb179e53fd.tar.bz2
asyncio.tasks.gather: Fix docstring
Diffstat (limited to 'Lib')
-rw-r--r--Lib/asyncio/tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
index 38ffec1..a5708b4 100644
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -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