Searched refs:methodresponse (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Lib/xmlrpc/ |
D | client.py | 934 def dumps(params, methodname=None, methodresponse=None, encoding=None, argument 959 methodresponse = 1 960 elif methodresponse and isinstance(params, tuple): 988 elif methodresponse:
|
D | server.py | 265 response = dumps(response, methodresponse=1,
|
/external/python/cpython2/Lib/ |
D | xmlrpclib.py | 1055 def dumps(params, methodname=None, methodresponse=None, encoding=None, argument 1082 methodresponse = 1 1083 elif methodresponse and isinstance(params, TupleType): 1113 elif methodresponse:
|
D | SimpleXMLRPCServer.py | 263 response = xmlrpclib.dumps(response, methodresponse=1,
|
/external/python/cpython3/Lib/test/ |
D | test_xmlrpc.py | 104 methodresponse=True)) 108 s = xmlrpclib.dumps((new_d,), methodresponse=True) 194 methodresponse=True) 318 response = xmlrpclib.dumps((5,), methodresponse=True)
|
/external/python/cpython2/Lib/test/ |
D | test_xmlrpc.py | 89 methodresponse=True)) 93 s = xmlrpclib.dumps((new_d,), methodresponse=True) 159 methodresponse=True)
|
/external/python/cpython2/Doc/library/ |
D | xmlrpclib.rst | 537 .. function:: dumps(params[, methodname[, methodresponse[, encoding[, allow_none]]]]) 539 Convert *params* into an XML-RPC request. or into a response if *methodresponse* 541 :exc:`Fault` exception class. If *methodresponse* is true, only a single value
|
/external/python/cpython3/Doc/library/ |
D | xmlrpc.client.rst | 522 .. function:: dumps(params, methodname=None, methodresponse=None, encoding=None, allow_none=False) 524 Convert *params* into an XML-RPC request. or into a response if *methodresponse* 526 :exc:`Fault` exception class. If *methodresponse* is true, only a single value
|