diff options
author | Georg Brandl <georg@python.org> | 2008-11-22 08:51:39 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-11-22 08:51:39 (GMT) |
commit | 9290503b2af7eed9667aefefd823e058385dc91d (patch) | |
tree | 198b41cfd132c0a7ae438d995d22f8519918fa16 /Doc | |
parent | 59d64f7830b7f45abec58e472c1e64523c02f66c (diff) | |
download | cpython-9290503b2af7eed9667aefefd823e058385dc91d.zip cpython-9290503b2af7eed9667aefefd823e058385dc91d.tar.gz cpython-9290503b2af7eed9667aefefd823e058385dc91d.tar.bz2 |
#4206: fix 2.xisms in multiprocessing docs and docstrings.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/multiprocessing.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index 5cfd42e..e15ff4d 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1447,8 +1447,8 @@ with the :class:`Pool` class. .. method:: map(func, iterable[, chunksize]) - A parallel equivalent of the :func:`map` builtin function. It blocks till - the result is ready. + A parallel equivalent of the :func:`map` builtin function, collecting the + result in a list. It blocks till the whole result is ready. This method chops the iterable into a number of chunks which it submits to the process pool as separate tasks. The (approximate) size of these @@ -1465,7 +1465,7 @@ with the :class:`Pool` class. .. method:: imap(func, iterable[, chunksize]) - An lazier version of :meth:`map`. + A lazier 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 |