summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2011-08-08 16:37:44 +0200
committerSandro Tosi <sandro.tosi@gmail.com>2011-08-08 16:37:44 +0200
commita9c9b2c38c8ed895ef38d92c79af77f2cfa398dc (patch)
tree17bb4d5c4a6881e18c0a9fd7777cce6705165d7f
parent9943c0d5d7d2a5eb98f3614f24e8eab75db297ba (diff)
downloadcpython-git-a9c9b2c38c8ed895ef38d92c79af77f2cfa398dc.tar.gz
#12709: add error_callback argument to map_async documentation
-rw-r--r--Doc/library/multiprocessing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 5a55e6f66f..45da5d390f 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1602,7 +1602,7 @@ with the :class:`Pool` class.
the process pool as separate tasks. The (approximate) size of these
chunks can be specified by setting *chunksize* to a positive integer.
- .. method:: map_async(func, iterable[, chunksize[, callback]])
+ .. method:: map_async(func, iterable[, chunksize[, callback[, error_callback]]])
A variant of the :meth:`.map` method which returns a result object.