]> granicus.if.org Git - python/commitdiff
bpo-31304: Update starmap_async documentation. (GH-4168)
authorPablo Galindo <Pablogsal@gmail.com>
Mon, 30 Oct 2017 18:39:28 +0000 (18:39 +0000)
committerMariatta <Mariatta@users.noreply.github.com>
Mon, 30 Oct 2017 18:39:28 +0000 (11:39 -0700)
Update the kwarg in the documentation of `multiprocessing.pool.Pool.starmap_async`, from `error_back` to `error_callback` to match the source code..

Doc/library/multiprocessing.rst

index 8d6d8707a0e1bc350b9dcb97eacb10c5200ea580..5fff93d1cd9439e10fcc8151cf6269ebc9a59cb0 100644 (file)
@@ -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.