Home
last modified time | relevance | path

Searched refs:DocXMLRPCServer (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Doc/library/
Ddocxmlrpcserver.rst1 :mod:`DocXMLRPCServer` --- Self-documenting XML-RPC server
4 .. module:: DocXMLRPCServer
10 The :mod:`DocXMLRPCServer` module has been merged into :mod:`xmlrpc.server`
17 The :mod:`DocXMLRPCServer` module extends the classes found in
19 requests. Servers can either be free standing, using :class:`~DocXMLRPCServer.DocXMLRPCServer`,
23 .. class:: DocXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding[, bind_and_…
39 *logRequests* parameter to the :class:`~DocXMLRPCServer.DocXMLRPCServer` constructor parameter is
45 DocXMLRPCServer Objects
48 The :class:`~DocXMLRPCServer.DocXMLRPCServer` class is derived from
56 .. method:: DocXMLRPCServer.set_server_title(server_title)
[all …]
/external/python/cpython2/Lib/test/
Dtest_docxmlrpc.py1 from DocXMLRPCServer import DocXMLRPCServer
23 serv = DocXMLRPCServer(("localhost", 0), logRequests=False)
60 DocXMLRPCServer._send_traceback_header = True
73 DocXMLRPCServer._send_traceback_header = False
/external/python/cpython3/Lib/test/
Dtest_docxmlrpc.py1 from xmlrpc.server import DocXMLRPCServer
23 serv = DocXMLRPCServer(("localhost", 0), logRequests=False)
70 DocXMLRPCServer._send_traceback_header = True
83 DocXMLRPCServer._send_traceback_header = False
/external/python/cpython3/Doc/library/
Dxmlrpc.server.rst361 :class:`DocXMLRPCServer`, or embedded in a CGI environment, using
365 .. class:: DocXMLRPCServer(addr, requestHandler=DocXMLRPCRequestHandler,\
386 *logRequests* parameter to the :class:`DocXMLRPCServer` constructor parameter is
392 DocXMLRPCServer Objects
395 The :class:`DocXMLRPCServer` class is derived from :class:`SimpleXMLRPCServer`
402 .. method:: DocXMLRPCServer.set_server_title(server_title)
408 .. method:: DocXMLRPCServer.set_server_name(server_name)
414 .. method:: DocXMLRPCServer.set_server_documentation(server_documentation)
/external/python/cpython2/Lib/
DDocXMLRPCServer.py243 class DocXMLRPCServer( SimpleXMLRPCServer, class
/external/python/cpython3/Lib/xmlrpc/
Dserver.py928 class DocXMLRPCServer( SimpleXMLRPCServer, class
/external/python/cpython2/Misc/NEWS.d/
D2.6b3.rst371 ConfigParser, cookielib, csv, difflib, distutils, DocXMLRPCServer, email,
D2.6a1.rst2853 DocXMLRPCServer.
/external/python/cpython3/Doc/whatsnew/
D3.0.rst623 * :mod:`xmlrpc` (:mod:`xmlrpclib`, :mod:`DocXMLRPCServer`,
D2.5.rst1522 * The :mod:`SimpleXMLRPCServer` and :mod:`DocXMLRPCServer` classes now have a
2261 * Library: The :mod:`SimpleXMLRPCServer` and :mod:`DocXMLRPCServer` classes now
D2.3.rst1651 * The new :mod:`DocXMLRPCServer` module allows writing self-documenting XML-RPC
D2.6.rst2612 * The XML-RPC :class:`SimpleXMLRPCServer` and :class:`DocXMLRPCServer`
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1521 * The :mod:`SimpleXMLRPCServer` and :mod:`DocXMLRPCServer` classes now have a
2260 * Library: The :mod:`SimpleXMLRPCServer` and :mod:`DocXMLRPCServer` classes now
D2.6.rst2608 …L-RPC :class:`~SimpleXMLRPCServer.SimpleXMLRPCServer` and :class:`~DocXMLRPCServer.DocXMLRPCServer`
D2.3.rst1651 * The new :mod:`DocXMLRPCServer` module allows writing self-documenting XML-RPC
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst35 Escape the server title of :class:`xmlrpc.server.DocXMLRPCServer` when
/external/python/cpython3/Misc/
DHISTORY4221 - Issue #8112: xlmrpc.server's DocXMLRPCServer server no longer raises an error
16726 the old ``SimpleXMLRPCServer`` and ``DocXMLRPCServer`` modules
21761 - The self-documenting XML server library DocXMLRPCServer was added.
/external/python/cpython2/Misc/
DHISTORY4377 - The self-documenting XML server library DocXMLRPCServer was added.