diff options
author | Georg Brandl <georg@python.org> | 2008-05-24 18:31:28 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-24 18:31:28 +0000 |
commit | e152a77d96df7479ce798ebd5baee7d41af99db3 (patch) | |
tree | 3d13fa9679d1ae46e5dec0af2ddf09f6edd45561 /Doc/library/basehttpserver.rst | |
parent | 6acb075f03ec5ecb8d89bc56fae99dc8c5a510ab (diff) | |
download | cpython-git-e152a77d96df7479ce798ebd5baee7d41af99db3.tar.gz |
socketserver renaming reversal part 3: move the module into the right
place and fix all references to it. Closes #2926.
Diffstat (limited to 'Doc/library/basehttpserver.rst')
-rw-r--r-- | Doc/library/basehttpserver.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/basehttpserver.rst b/Doc/library/basehttpserver.rst index 7d50613438..0fbf8b0687 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:: |