Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560)

(cherry picked from commit 32096df0e0)

Co-authored-by: Julien Palard <julien@palard.fr>
This commit is contained in:
Miss Islington (bot) 2021-12-26 03:15:14 -08:00 committed by GitHub
parent 11909c12c7
commit 2cb9ed2a6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2250,8 +2250,9 @@ with the :class:`Pool` class.
.. method:: starmap(func, iterable[, chunksize])
Like :meth:`map` except that the elements of the *iterable* are expected
to be iterables that are unpacked as arguments.
Like :meth:`~multiprocessing.pool.Pool.map` except that the
elements of the *iterable* are expected to be iterables that are
unpacked as arguments.
Hence an *iterable* of ``[(1,2), (3, 4)]`` results in ``[func(1,2),
func(3,4)]``.