(original) (raw)
changeset: 73305:37e34a983d6d branch: 2.7 parent: 73296:fd4236c787cb user: Senthil Kumaran senthil@uthcode.com date: Thu Nov 03 02:02:38 2011 +0800 files: Doc/library/multiprocessing.rst description: Fix Issue13147 - Correct the Multiprocessing Pool.map_async method signature. Remove the error_callback which is not present in 2.7. Patch by Jyrki Pulliainen. diff -r fd4236c787cb -r 37e34a983d6d Doc/library/multiprocessing.rst --- a/Doc/library/multiprocessing.rst Tue Nov 01 23:54:16 2011 +0100 +++ b/Doc/library/multiprocessing.rst Thu Nov 03 02:02:38 2011 +0800 @@ -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[, error_callback]]]) + .. method:: map_async(func, iterable[, chunksize[, callback]]) A variant of the :meth:`.map` method which returns a result object. /senthil@uthcode.com