summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-11-21 14:28:39 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-11-21 14:28:39 (GMT)
commitdd31d11199ee95c77291b6a075241dd8c2557700 (patch)
treec9e4d9438ab8aace6d0d35e1a044d0bc1f460de4 /Doc/library/multiprocessing.rst
parentdb149ac59b9384648099a971750b8c3151fbfec7 (diff)
downloadcpython-dd31d11199ee95c77291b6a075241dd8c2557700.zip
cpython-dd31d11199ee95c77291b6a075241dd8c2557700.tar.gz
cpython-dd31d11199ee95c77291b6a075241dd8c2557700.tar.bz2
Merged revisions 76435 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r76435 | jesse.noller | 2009-11-21 09:20:14 -0500 (Sat, 21 Nov 2009) | 9 lines Merged revisions 76433 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76433 | jesse.noller | 2009-11-21 09:01:56 -0500 (Sat, 21 Nov 2009) | 1 line issue5738: The distribution example was confusing, and out of date. It's too large to include inline in the docs as well. It belongs in an addons module outside the stdlib. Removing. ........ ................
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r--Doc/library/multiprocessing.rst7
1 files changed, 0 insertions, 7 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 314cd2d..14f685f 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -2228,10 +2228,3 @@ Some simple benchmarks comparing :mod:`multiprocessing` with :mod:`threading`:
.. literalinclude:: ../includes/mp_benchmarks.py
-An example/demo of how to use the :class:`managers.SyncManager`, :class:`Process`
-and others to build a system which can distribute processes and work via a
-distributed queue to a "cluster" of machines on a network, accessible via SSH.
-You will need to have private key authentication for all hosts configured for
-this to work.
-
-.. literalinclude:: ../includes/mp_distributing.py