[Python-checkins] r81419 - python/trunk/Doc/library/simplexmlrpcserver.rst

georg.brandl python-checkins at python.org
Fri May 21 22:58:12 CEST 2010


Author: georg.brandl
Date: Fri May 21 22:58:12 2010
New Revision: 81419

Log:
Add missing parameter in SimpleXMLRPCServer signature.

Modified:
   python/trunk/Doc/library/simplexmlrpcserver.rst

Modified: python/trunk/Doc/library/simplexmlrpcserver.rst
==============================================================================
--- python/trunk/Doc/library/simplexmlrpcserver.rst	(original)
+++ python/trunk/Doc/library/simplexmlrpcserver.rst	Fri May 21 22:58:12 2010
@@ -20,7 +20,7 @@
 :class:`CGIXMLRPCRequestHandler`.
 
 
-.. class:: SimpleXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding]]]])
+.. class:: SimpleXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding[, bind_and_activate]]]])
 
    Create a new server instance.  This class provides methods for registration of
    functions that can be called by the XML-RPC protocol.  The *requestHandler*


More information about the Python-checkins mailing list