diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-10-24 22:28:58 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-10-24 22:28:58 (GMT) |
commit | 37d2fe00e1de4f2baf392d6555debcb372836763 (patch) | |
tree | c3a2df1ebeece90152c0efbd625002f0ed57af5d /Doc/library/multiprocessing.rst | |
parent | a933e520e8c86901630186be1eb50d4faafade0e (diff) | |
download | cpython-37d2fe00e1de4f2baf392d6555debcb372836763.zip cpython-37d2fe00e1de4f2baf392d6555debcb372836763.tar.gz cpython-37d2fe00e1de4f2baf392d6555debcb372836763.tar.bz2 |
fix some py3k doc nits
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 |