mirror of
https://github.com/python/cpython.git
synced 2026-01-17 21:00:12 +00:00
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.
This commit is contained in:
parent
b82cbc33f5
commit
0fc13ae345
1 changed files with 1 additions and 1 deletions
|
|
@ -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[, error_callback]]])
|
||||
.. method:: map_async(func, iterable[, chunksize[, callback]])
|
||||
|
||||
A variant of the :meth:`.map` method which returns a result object.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue