Searched refs:faultCode (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | xmlrpclib.py | 272 def __init__(self, faultCode, faultString, **extra): argument 274 self.faultCode = faultCode 279 (self.faultCode, repr(self.faultString)) 624 dump({'faultCode': values.faultCode,
|
D | SimpleXMLRPCServer.py | 367 {'faultCode' : fault.faultCode,
|
/external/python/cpython3/Lib/xmlrpc/ |
D | client.py | 235 def __init__(self, faultCode, faultString, **extra): argument 237 self.faultCode = faultCode 241 self.faultCode, self.faultString) 500 dump({'faultCode': values.faultCode,
|
D | server.py | 368 {'faultCode' : fault.faultCode,
|
/external/python/cpython2/Doc/library/ |
D | xmlrpclib.rst | 379 .. attribute:: faultCode 413 print "Fault code: %d" % err.faultCode
|
/external/python/cpython3/Doc/library/ |
D | xmlrpc.client.rst | 379 .. attribute:: faultCode 413 print("Fault code: %d" % err.faultCode)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.10.0a7.rst | 758 Fix type documentation for ``Fault.faultCode``; the type has to be ``int``
|