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

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


http://hg.python.org/cpython/rev/41b816853819
changeset:   71772:41b816853819
branch:      3.2
parent:      71769:53b8260b9ea7
user:        Sandro Tosi <sandro.tosi at gmail.com>
date:        Mon Aug 08 16:38:13 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
@@ -1609,7 +1609,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