[Python-checkins] cpython (2.7): #12709: add error_callback argument to map_async documentation

sandro.tosi python-checkins at python.org
Mon Aug 8 16:40:46 CEST 2011


http://hg.python.org/cpython/rev/b2835b8412e5
changeset:   71771:b2835b8412e5
branch:      2.7
parent:      71768:8852e4a9aa1e
user:        Sandro Tosi <sandro.tosi at gmail.com>
date:        Mon Aug 08 16:37:44 2011 +0200
summary:
  #12709: add error_callback argument to map_async documentation

files:
  Doc/library/multiprocessing.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -1602,7 +1602,7 @@
       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.
 

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


More information about the Python-checkins mailing list