Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/library/simplexmlrpcserver.rst

    r2 r391  
    99.. note::
    1010   The :mod:`SimpleXMLRPCServer` module has been merged into
    11    :mod:`xmlrpc.server` in Python 3.0.  The :term:`2to3` tool will automatically
    12    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.
    1313
    1414
    1515.. versionadded:: 2.2
     16
     17**Source code:** :source:`Lib/SimpleXMLRPCServer.py`
     18
     19--------------
    1620
    1721The :mod:`SimpleXMLRPCServer` module provides a basic server framework for
     
    2125
    2226
    23 .. class:: SimpleXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding]]]])
     27.. class:: SimpleXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding[, bind_and_activate]]]])
    2428
    2529   Create a new server instance.  This class provides methods for registration of
     
    134138   .. versionadded:: 2.5
    135139
     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
    136149.. _simplexmlrpcserver-example:
    137150
Note: See TracChangeset for help on using the changeset viewer.