diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-12 02:11:22 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-12 02:11:22 (GMT) |
commit | d192c925ac0d8e7801462b71cd0be033ddb18103 (patch) | |
tree | 43eb5af5dc808d5d3c1892096ceed5fecdf3d60a /Doc/library/simplexmlrpcserver.rst | |
parent | fb9ce65a91d674b1a80174c70a025aee83783388 (diff) | |
download | cpython-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/simplexmlrpcserver.rst')
-rw-r--r-- | Doc/library/simplexmlrpcserver.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/simplexmlrpcserver.rst b/Doc/library/simplexmlrpcserver.rst index c788d55..d434210 100644 --- a/Doc/library/simplexmlrpcserver.rst +++ b/Doc/library/simplexmlrpcserver.rst @@ -22,7 +22,7 @@ XML-RPC servers written in Python. Servers can either be free standing, using functions that can be called by the XML-RPC protocol. The *requestHandler* parameter should be a factory for request handler instances; it defaults to :class:`SimpleXMLRPCRequestHandler`. The *addr* and *requestHandler* parameters - are passed to the :class:`SocketServer.TCPServer` constructor. If *logRequests* + are passed to the :class:`socketserver.TCPServer` constructor. If *logRequests* is true (the default), requests will be logged; setting this parameter to false will turn off logging. The *allow_none* and *encoding* parameters are passed on to :mod:`xmlrpclib` and control the XML-RPC responses that will be returned @@ -63,7 +63,7 @@ SimpleXMLRPCServer Objects -------------------------- The :class:`SimpleXMLRPCServer` class is based on -:class:`SocketServer.TCPServer` and provides a means of creating simple, stand +:class:`socketserver.TCPServer` and provides a means of creating simple, stand alone XML-RPC servers. |