diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2017-10-30 18:39:28 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-10-30 18:39:28 (GMT) |
commit | 11225753a89c2907bb717e6c050fe907e5e11829 (patch) | |
tree | b2b924ec795416f57c2869439cf1478548b00b4f /Doc | |
parent | fe4ea9cf1ee04f5a60e4ed928d8624b95b031e18 (diff) | |
download | cpython-11225753a89c2907bb717e6c050fe907e5e11829.zip cpython-11225753a89c2907bb717e6c050fe907e5e11829.tar.gz cpython-11225753a89c2907bb717e6c050fe907e5e11829.tar.bz2 |
bpo-31304: Update starmap_async documentation. (GH-4168)
Update the kwarg in the documentation of `multiprocessing.pool.Pool.starmap_async`, from `error_back` to `error_callback` to match the source code..
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 8d6d870..5fff93d 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -2181,7 +2181,7 @@ with the :class:`Pool` class. .. versionadded:: 3.3 - .. method:: starmap_async(func, iterable[, chunksize[, callback[, error_back]]]) + .. method:: starmap_async(func, iterable[, chunksize[, callback[, error_callback]]]) A combination of :meth:`starmap` and :meth:`map_async` that iterates over *iterable* of iterables and calls *func* with the iterables unpacked. |