From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 26 Dec 2021 11:15:38 +0000 (-0800) Subject: Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560) X-Git-Tag: v3.9.10~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c1100fc59aca4bb8d0b9cdfbd439d4d2dc9651c;p=thirdparty%2FPython%2Fcpython.git Doc: Fix link in multiprocessing.starmap pointing to builtin map. (GH-26560) (cherry picked from commit 32096df0e00e692ee6dc688e62213bff0dffd573) Co-authored-by: Julien Palard --- diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 2c7d7d8c0e8b..96bc6c153284 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -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)]``.