summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-01-22 21:56:13 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-01-22 21:56:13 (GMT)
commit7b3c89d88cac53325b30f583643d288426d90789 (patch)
tree4db77c950c71503865c850cdf0cd36e969c2cbef /Doc/library/multiprocessing.rst
parent60bbdd5c9fbf633a88bcb0820f146fa64344f3bf (diff)
downloadcpython-7b3c89d88cac53325b30f583643d288426d90789.zip
cpython-7b3c89d88cac53325b30f583643d288426d90789.tar.gz
cpython-7b3c89d88cac53325b30f583643d288426d90789.tar.bz2
merge r68862 to py3k
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r--Doc/library/multiprocessing.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 50714ef..6178851 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -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]]])