summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2011-08-08 14:38:13 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2011-08-08 14:38:13 (GMT)
commitdb79e951958fe901c0c7cf97914dfdb246abc0c3 (patch)
tree1dfb57238e562f0eb4fe17b86f2af9e69172e8ab /Doc/library/multiprocessing.rst
parent61baee0ee7c5183c80809e9b44da2542c682c235 (diff)
downloadcpython-db79e951958fe901c0c7cf97914dfdb246abc0c3.zip
cpython-db79e951958fe901c0c7cf97914dfdb246abc0c3.tar.gz
cpython-db79e951958fe901c0c7cf97914dfdb246abc0c3.tar.bz2
#12709: add error_callback argument to map_async documentation
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-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 92d5272..d95b33c 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1609,7 +1609,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.