Commit 7b3c89d8 authored by Jesse Noller's avatar Jesse Noller

merge r68862 to py3k

parent 60bbdd5c
......@@ -1522,7 +1522,9 @@ with the :class:`Pool` class.
.. method:: apply(func[, args[, kwds]])
Call *func* with arguments *args* and keyword arguments *kwds*. It blocks
till the result is ready.
till the result is ready. Given this blocks - :meth:`apply_async` is better suited
for performing work in parallel. Additionally, the passed
in function is only executed in one of the workers of the pool.
.. method:: apply_async(func[, args[, kwds[, callback]]])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment