Home
last modified time | relevance | path

Searched refs:allow_none (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Lib/
DSimpleXMLRPCServer.py169 def __init__(self, allow_none=False, encoding=None): argument
172 self.allow_none = allow_none
264 allow_none=self.allow_none, encoding=self.encoding)
266 response = xmlrpclib.dumps(fault, allow_none=self.allow_none,
273 encoding=self.encoding, allow_none=self.allow_none,
589 logRequests=True, allow_none=False, encoding=None, bind_and_activate=True): argument
592 SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding)
612 logRequests=True, allow_none=False, encoding=None, bind_and_activate=True): argument
614 SimpleXMLRPCServer.__init__(self, addr, requestHandler, logRequests, allow_none,
617 self.allow_none = allow_none
[all …]
Dxmlrpclib.py609 def __init__(self, encoding=None, allow_none=0): argument
613 self.allow_none = allow_none
663 if not self.allow_none:
1056 allow_none=0): argument
1092 m = Marshaller(encoding, allow_none)
1563 allow_none=0, use_datetime=0, context=None): argument
1587 self.__allow_none = allow_none
1596 allow_none=self.__allow_none)
DDocXMLRPCServer.py252 logRequests=1, allow_none=False, encoding=None, argument
255 allow_none, encoding, bind_and_activate)
/external/autotest/site_utils/rpm_control_system/
Dfrontend_server_unittest.py42 allow_none=True).AndReturn(self.xmlrpc_mock)
114 allow_none=True).AndReturn(
138 mox.IgnoreArg(), allow_none=True).MultipleTimes(3).AndReturn(
Dfrontend_server.py131 client = xmlrpclib.ServerProxy(dispatcher_uri, allow_none=True)
165 dispatcher_entry[DISPATCHER_URI], allow_none=True)
370 server = MultiThreadedXMLRPCServer((address, port), allow_none=True)
Drpm_dispatcher.py232 allow_none=True)
/external/python/cpython2/Doc/library/
Dsimplexmlrpcserver.rst27 .. class:: SimpleXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding[, bind_an…
35 will turn off logging. The *allow_none* and *encoding* parameters are passed
43 The *allow_none* and *encoding* parameters were added.
49 .. class:: CGIXMLRPCRequestHandler([allow_none[, encoding]])
52 *allow_none* and *encoding* parameters are passed on to :mod:`xmlrpclib` and
58 The *allow_none* and *encoding* parameters were added.
Dxmlrpclib.rst42 .. class:: ServerProxy(uri[, transport[, encoding[, verbose[, allow_none[, use_datetime[, context]]…
53 If *allow_none* is true, the Python constant ``None`` will be translated into
112 | | *allow_none* is true. |
537 .. function:: dumps(params[, methodname[, methodresponse[, encoding[, allow_none]]]])
545 it via an extension, provide a true value for *allow_none*.
Ddocxmlrpcserver.rst23 .. class:: DocXMLRPCServer(addr[, requestHandler[, logRequests[, allow_none[, encoding[, bind_and_…
/external/autotest/server/hosts/
Drpc_server_tracker.py178 rpc_url, timeout=request_timeout_seconds, allow_none=True)
180 proxy = xmlrpclib.ServerProxy(rpc_url, allow_none=True)
/external/autotest/client/cros/faft/
Drpc_server.py28 server = SimpleXMLRPCServer(('localhost', options.port), allow_none=True,
/external/autotest/client/cros/
Dxmlrpc_server.py41 allow_none=True)
/external/autotest/client/cros/multimedia/
Dmultimedia_xmlrpc_server.py111 allow_none=True)
/external/toolchain-utils/automation/server/
Dserver.py114 allow_none=True,
/external/autotest/client/cros/networking/
Dandroid_xmlrpc_server.py82 self._server = SimpleXMLRPCServer((host, port), allow_none=True)
/external/autotest/client/cros/chameleon/
Dchameleon.py155 chameleond_proxy = xmlrpclib.ServerProxy(remote, allow_none=True)
/external/python/cpython2/Lib/test/
Dtest_xmlrpc.py145 strg = xmlrpclib.dumps(arg1, allow_none=True)
/external/python/cpython2/Doc/whatsnew/
D2.3.rst1648 you must supply a true value for the *allow_none* parameter when creating a
/external/python/cpython2/Misc/
DHISTORY1868 - Patches #893642, #1039083: add allow_none, encoding arguments to