https://github.com/python/cpython/commit/6b87121967e2bc95574ef071f0ae2432e304ffcf commit: 6b87121967e2bc95574ef071f0ae2432e304ffcf branch: 3.15 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-09-11T21:00:18+03:00 summary:
[3.15] gh-84291: Clarify Pool.imap documentation (GH-155030) (#157274) Co-authored-by: Taeknology <[email protected]> files: M Doc/library/multiprocessing.rst diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 2d13053915830b..aa94266e735492 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -2538,7 +2538,7 @@ with the :class:`Pool` class. .. method:: imap(func, iterable[, chunksize]) - A lazier version of :meth:`.map`. + An iterator-based version of :meth:`.map`. The *chunksize* argument is the same as the one used by the :meth:`.map` method. For very long iterables using a large value for *chunksize* can _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
