summaryrefslogtreecommitdiffstats
path: root/Doc/library/basehttpserver.rst
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-12 02:11:22 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-12 02:11:22 (GMT)
commitd192c925ac0d8e7801462b71cd0be033ddb18103 (patch)
tree43eb5af5dc808d5d3c1892096ceed5fecdf3d60a /Doc/library/basehttpserver.rst
parentfb9ce65a91d674b1a80174c70a025aee83783388 (diff)
downloadcpython-d192c925ac0d8e7801462b71cd0be033ddb18103.zip
cpython-d192c925ac0d8e7801462b71cd0be033ddb18103.tar.gz
cpython-d192c925ac0d8e7801462b71cd0be033ddb18103.tar.bz2
Updated all import statements to use the new socketserver module name.
Renamed socketserver module in its own documentation. Renamed documentation references.
Diffstat (limited to 'Doc/library/basehttpserver.rst')
-rw-r--r--Doc/library/basehttpserver.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/basehttpserver.rst b/Doc/library/basehttpserver.rst
index 0fbf8b0..7d50613 100644
--- a/Doc/library/basehttpserver.rst
+++ b/Doc/library/basehttpserver.rst
@@ -21,7 +21,7 @@ Usually, this module isn't used directly, but is used as a basis for building
functioning Web servers. See the :mod:`SimpleHTTPServer` and
:mod:`CGIHTTPServer` modules.
-The first class, :class:`HTTPServer`, is a :class:`SocketServer.TCPServer`
+The first class, :class:`HTTPServer`, is a :class:`socketserver.TCPServer`
subclass. It creates and listens at the HTTP socket, dispatching the requests
to a handler. Code to create and run the server looks like this::