diff options
author | Georg Brandl <georg@python.org> | 2010-07-10 11:51:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-10 11:51:06 (GMT) |
commit | 47d48bb3e7611b20649c4a2a5e205d57cf134d2b (patch) | |
tree | eb00ad7e27fca199d8d1e1a73e43cf42ee924f9b /Doc/library/multiprocessing.rst | |
parent | 297d97241a065fe2a341fe5f340c81566b762142 (diff) | |
download | cpython-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.rst | 4 |
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 |