[Python-checkins] cpython: asyncio.tasks.gather: Fix docstring

yury.selivanov python-checkins at python.org
Thu Feb 6 18:04:02 CET 2014


http://hg.python.org/cpython/rev/a46862fc4d18
changeset:   88996:a46862fc4d18
user:        Yury Selivanov <yselivanov at sprymix.com>
date:        Thu Feb 06 12:03:53 2014 -0500
summary:
  asyncio.tasks.gather: Fix docstring

files:
  Lib/asyncio/tasks.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/asyncio/tasks.py b/Lib/asyncio/tasks.py
--- a/Lib/asyncio/tasks.py
+++ b/Lib/asyncio/tasks.py
@@ -555,7 +555,7 @@
     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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list