summaryrefslogtreecommitdiffstats
path: root/Doc/library/socketserver.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/socketserver.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/socketserver.rst')
-rw-r--r--Doc/library/socketserver.rst9
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst
index 4163a8f..e24b429 100644
--- a/Doc/library/socketserver.rst
+++ b/Doc/library/socketserver.rst
@@ -1,12 +1,11 @@
-:mod:`SocketServer` --- A framework for network servers
+:mod:`socketserver` --- A framework for network servers
=======================================================
-.. module:: SocketServer
+.. module:: socketserver
:synopsis: A framework for network servers.
-
-The :mod:`SocketServer` module simplifies the task of writing network servers.
+The :mod:`socketserver` module simplifies the task of writing network servers.
There are four basic server classes: :class:`TCPServer` uses the Internet TCP
protocol, which provides for continuous streams of data between the client and
@@ -213,7 +212,7 @@ server classes like :class:`TCPServer`; these methods aren't useful to external
users of the server object.
.. XXX should the default implementations of these be documented, or should
- it be assumed that the user will look at SocketServer.py?
+ it be assumed that the user will look at socketserver.py?
.. function:: finish_request()