diff options
author | Georg Brandl <georg@python.org> | 2010-05-21 20:58:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-21 20:58:12 (GMT) |
commit | 233eb540511c1ad8ebd3dbc6fa98b4db9ad56ae0 (patch) | |
tree | 8bcbd7b21f1635455a736544f878b95fefd67363 /Doc | |
parent | da69add80406649663f99010e9ef89e3de4ad550 (diff) | |
download | cpython-233eb540511c1ad8ebd3dbc6fa98b4db9ad56ae0.zip cpython-233eb540511c1ad8ebd3dbc6fa98b4db9ad56ae0.tar.gz cpython-233eb540511c1ad8ebd3dbc6fa98b4db9ad56ae0.tar.bz2 |
Add missing parameter in SimpleXMLRPCServer signature.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/simplexmlrpcserver.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/simplexmlrpcserver.rst b/Doc/library/simplexmlrpcserver.rst index 72b2365..c0819bf 100644 --- a/Doc/library/simplexmlrpcserver.rst +++ b/Doc/library/simplexmlrpcserver.rst @@ -20,7 +20,7 @@ XML-RPC servers written in Python. Servers can either be free standing, using :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* |