Skip to content

Commit 3c1100f

Browse files
Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560)
(cherry picked from commit 32096df) Co-authored-by: Julien Palard <[email protected]>
1 parent 393ff04 commit 3c1100f

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
@@ -2250,8 +2250,9 @@ with the :class:`Pool` class.
22502250

22512251
.. method:: starmap(func, iterable[, chunksize])
22522252

2253-
Like :meth:`map` except that the elements of the *iterable* are expected
2254-
to be iterables that are unpacked as arguments.
2253+
Like :meth:`~multiprocessing.pool.Pool.map` except that the
2254+
elements of the *iterable* are expected to be iterables that are
2255+
unpacked as arguments.
22552256

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

0 commit comments

Comments
 (0)