From 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 1 Sep 2007 13:51:09 +0000 Subject: Get rid of the remaining versionadded/versionchanged directives. --- Doc/library/simplexmlrpcserver.rst | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) (limited to 'Doc/library/simplexmlrpcserver.rst') diff --git a/Doc/library/simplexmlrpcserver.rst b/Doc/library/simplexmlrpcserver.rst index 51ce8d84c0..ec80843676 100644 --- a/Doc/library/simplexmlrpcserver.rst +++ b/Doc/library/simplexmlrpcserver.rst @@ -8,15 +8,13 @@ .. sectionauthor:: Fred L. Drake, Jr. -.. versionadded:: 2.2 - The :mod:`SimpleXMLRPCServer` module provides a basic server framework for XML-RPC servers written in Python. Servers can either be free standing, using :class:`SimpleXMLRPCServer`, or embedded in a CGI environment, 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* @@ -31,12 +29,6 @@ XML-RPC servers written in Python. Servers can either be free standing, using constructor; it defaults to true. Setting it to false allows code to manipulate the *allow_reuse_address* class variable before the address is bound. - .. versionchanged:: 2.5 - The *allow_none* and *encoding* parameters were added. - - .. versionchanged:: 2.6 - The *bind_and_activate* parameter was added. - .. class:: CGIXMLRPCRequestHandler([allow_none[, encoding]]) @@ -44,11 +36,6 @@ XML-RPC servers written in Python. Servers can either be free standing, using *allow_none* and *encoding* parameters are passed on to :mod:`xmlrpclib` and control the XML-RPC responses that will be returned from the server. - .. versionadded:: 2.3 - - .. versionchanged:: 2.5 - The *allow_none* and *encoding* parameters were added. - .. class:: SimpleXMLRPCRequestHandler() @@ -102,18 +89,12 @@ alone XML-RPC servers. module's global variables and may allow intruders to execute arbitrary code on your machine. Only use this option on a secure, closed network. - .. versionchanged:: 2.3.5, 2.4.1 - *allow_dotted_names* was added to plug a security hole; prior versions are - insecure. - .. method:: SimpleXMLRPCServer.register_introspection_functions() Registers the XML-RPC introspection functions ``system.listMethods``, ``system.methodHelp`` and ``system.methodSignature``. - .. versionadded:: 2.3 - .. method:: SimpleXMLRPCServer.register_multicall_functions() @@ -127,7 +108,6 @@ alone XML-RPC servers. 404 "no such page" HTTP error. If this tuple is empty, all paths will be considered valid. The default value is ``('/', '/RPC2')``. - .. versionadded:: 2.5 Example:: -- cgit v1.2.1