Changeset 391 for python/trunk/Doc/library/simplexmlrpcserver.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/simplexmlrpcserver.rst
r2 r391 9 9 .. note:: 10 10 The :mod:`SimpleXMLRPCServer` module has been merged into 11 :mod:`xmlrpc.server` in Python 3. 0.The :term:`2to3` tool will automatically12 adapt imports when converting your sources to 3.0.11 :mod:`xmlrpc.server` in Python 3. The :term:`2to3` tool will automatically 12 adapt imports when converting your sources to Python 3. 13 13 14 14 15 15 .. versionadded:: 2.2 16 17 **Source code:** :source:`Lib/SimpleXMLRPCServer.py` 18 19 -------------- 16 20 17 21 The :mod:`SimpleXMLRPCServer` module provides a basic server framework for … … 21 25 22 26 23 .. class:: SimpleXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding ]]]])27 .. class:: SimpleXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding[, bind_and_activate]]]]) 24 28 25 29 Create a new server instance. This class provides methods for registration of … … 134 138 .. versionadded:: 2.5 135 139 140 .. attribute:: SimpleXMLRPCRequestHandler.encode_threshold 141 142 If this attribute is not ``None``, responses larger than this value 143 will be encoded using the *gzip* transfer encoding, if permitted by 144 the client. The default is ``1400`` which corresponds roughly 145 to a single TCP packet. 146 147 .. versionadded:: 2.7 148 136 149 .. _simplexmlrpcserver-example: 137 150
Note:
See TracChangeset
for help on using the changeset viewer.