Home
last modified time | relevance | path

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

/third_party/python/Lib/xmlrpc/
Dserver.py165 def __init__(self, allow_none=False, encoding=None, argument
169 self.allow_none = allow_none
267 allow_none=self.allow_none, encoding=self.encoding)
269 response = dumps(fault, allow_none=self.allow_none,
277 encoding=self.encoding, allow_none=self.allow_none,
600 logRequests=True, allow_none=False, encoding=None, argument
604 SimpleXMLRPCDispatcher.__init__(self, allow_none, encoding, use_builtin_types)
617 logRequests=True, allow_none=False, encoding=None, argument
620 SimpleXMLRPCServer.__init__(self, addr, requestHandler, logRequests, allow_none,
623 self.allow_none = allow_none
[all …]
Dclient.py485 def __init__(self, encoding=None, allow_none=False): argument
489 self.allow_none = allow_none
539 if not self.allow_none:
945 allow_none=False): argument
979 m = Marshaller(encoding, allow_none)
1425 allow_none=False, use_datetime=False, use_builtin_types=False, argument
1453 self.__allow_none = allow_none
1462 allow_none=self.__allow_none).encode(self.__encoding, 'xmlcharrefreplace')
/third_party/python/Lib/multiprocessing/
Dcontext.py197 def get_start_method(self, allow_none=False): argument
249 def get_start_method(self, allow_none=False): argument
251 if allow_none:
/third_party/python/Doc/library/
Dxmlrpc.server.rst28 logRequests=True, allow_none=False, encoding=None,\
37 will turn off logging. The *allow_none* and *encoding* parameters are passed
51 .. class:: CGIXMLRPCRequestHandler(allow_none=False, encoding=None,\
55 *allow_none* and *encoding* parameters are passed on to :mod:`xmlrpc.client`
366 logRequests=True, allow_none=False, encoding=None,\
Dxmlrpc.client.rst36 allow_none=False, use_datetime=False, \
48 If *allow_none* is true, the Python constant ``None`` will be translated into
125 | | *allow_none* is true. |
528 .. function:: dumps(params, methodname=None, methodresponse=None, encoding=None, allow_none=False)
536 it via an extension, provide a true value for *allow_none*.
Dmultiprocessing.rst1022 .. function:: get_start_method(allow_none=False)
1026 If the start method has not been fixed and *allow_none* is false,
1028 returned. If the start method has not been fixed and *allow_none*
/third_party/mesa3d/.gitlab-ci/lava/
Dlava_job_submitter.py202 uri_str, allow_none=True, transport=transport)
/third_party/python/Lib/test/
Dtest_xmlrpc.py183 strg = xmlrpclib.dumps(arg1, allow_none=True)
1497 allow_none=True, encoding=None, use_builtin_types=True)
D_test_multiprocessing.py5878 old_start_method[0] = multiprocessing.get_start_method(allow_none=True)
/third_party/python/Doc/whatsnew/
D2.3.rst1648 you must supply a true value for the *allow_none* parameter when creating a
/third_party/python/Misc/
DHISTORY19252 - Patches #893642, #1039083: add allow_none, encoding arguments to