Home
last modified time | relevance | path

Searched refs:faultCode (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Lib/
Dxmlrpclib.py272 def __init__(self, faultCode, faultString, **extra): argument
274 self.faultCode = faultCode
279 (self.faultCode, repr(self.faultString))
624 dump({'faultCode': values.faultCode,
DSimpleXMLRPCServer.py367 {'faultCode' : fault.faultCode,
/external/python/cpython3/Lib/xmlrpc/
Dclient.py235 def __init__(self, faultCode, faultString, **extra): argument
237 self.faultCode = faultCode
241 self.faultCode, self.faultString)
500 dump({'faultCode': values.faultCode,
Dserver.py368 {'faultCode' : fault.faultCode,
/external/python/cpython2/Doc/library/
Dxmlrpclib.rst379 .. attribute:: faultCode
413 print "Fault code: %d" % err.faultCode
/external/python/cpython3/Doc/library/
Dxmlrpc.client.rst379 .. attribute:: faultCode
413 print("Fault code: %d" % err.faultCode)
/external/python/cpython3/Misc/NEWS.d/
D3.10.0a7.rst758 Fix type documentation for ``Fault.faultCode``; the type has to be ``int``