Skip to content

Commit 32096df

Browse files
authored
Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560)
1 parent c45fa1a commit 32096df

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Doc/library/multiprocessing.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2242,8 +2242,9 @@ with the :class:`Pool` class.
22422242

22432243
.. method:: starmap(func, iterable[, chunksize])
22442244

2245-
Like :meth:`map` except that the elements of the *iterable* are expected
2246-
to be iterables that are unpacked as arguments.
2245+
Like :meth:`~multiprocessing.pool.Pool.map` except that the
2246+
elements of the *iterable* are expected to be iterables that are
2247+
unpacked as arguments.
22472248

22482249
Hence an *iterable* of ``[(1,2), (3, 4)]`` results in ``[func(1,2),
22492250
func(3,4)]``.

0 commit comments

Comments
 (0)