diff options
Diffstat (limited to 'Doc/library/multiprocessing.rst')
| -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 4ccc185..05e1a1d 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -1433,8 +1433,8 @@ with the :class:`Pool` class. .. method:: apply(func[, args[, kwds]]) - Equivalent of the :func:`apply` builtin function. It blocks till the - result is ready. + Call *func* with arguments *args* and keyword arguments *kwds*. It blocks + till the result is ready. .. method:: apply_async(func[, args[, kwds[, callback]]]) @@ -1465,7 +1465,7 @@ with the :class:`Pool` class. .. method:: imap(func, iterable[, chunksize]) - An equivalent of :func:`itertools.imap`. + An 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 |
