Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8943318 commit eb48a45Copy full SHA for eb48a45
1 file changed
Doc/library/multiprocessing.rst
@@ -2169,7 +2169,8 @@ with the :class:`Pool` class.
2169
.. method:: map(func, iterable[, chunksize])
2170
2171
A parallel equivalent of the :func:`map` built-in function (it supports only
2172
- one *iterable* argument though). It blocks until the result is ready.
+ one *iterable* argument though, for multiple iterables see :meth:`starmap`).
2173
+ It blocks until the result is ready.
2174
2175
This method chops the iterable into a number of chunks which it submits to
2176
the process pool as separate tasks. The (approximate) size of these
0 commit comments