summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-10 11:51:06 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-10 11:51:06 (GMT)
commit47d48bb3e7611b20649c4a2a5e205d57cf134d2b (patch)
treeeb00ad7e27fca199d8d1e1a73e43cf42ee924f9b /Doc/library/multiprocessing.rst
parent297d97241a065fe2a341fe5f340c81566b762142 (diff)
downloadcpython-47d48bb3e7611b20649c4a2a5e205d57cf134d2b.zip
cpython-47d48bb3e7611b20649c4a2a5e205d57cf134d2b.tar.gz
cpython-47d48bb3e7611b20649c4a2a5e205d57cf134d2b.tar.bz2
#8338: fix outdated class name.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r--Doc/library/multiprocessing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index b72d955..9bb119e 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -2228,8 +2228,8 @@ collect the results:
An example of how a pool of worker processes can each run a
-:class:`SimpleHTTPServer.HttpServer` instance while sharing a single listening
-socket.
+:class:`~http.server.SimpleHTTPRequestHandler` instance while sharing a single
+listening socket.
.. literalinclude:: ../includes/mp_webserver.py