]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560)
authorJulien Palard <julien@palard.fr>
Wed, 7 Jul 2021 08:25:01 +0000 (10:25 +0200)
committerGitHub <noreply@github.com>
Wed, 7 Jul 2021 08:25:01 +0000 (10:25 +0200)
Doc/library/multiprocessing.rst

index ae4f7bf3b9621d21022633f9c6465ea6be5f9885..b9396c3c7531cbc0e3ea42ffcde7227861756e15 100644 (file)
@@ -2242,8 +2242,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)]``.