diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:28:30 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 18:28:30 (GMT) |
commit | a6bac95a3c6eb926d3eded04e4b04a1d552053d1 (patch) | |
tree | 8d12149fdb2dcbdcf4461af934f89ddee5fb1e28 /Doc/library/xmlrpc.client.rst | |
parent | bfd1edd15541ff3d8ea89385faecdbcbba1a9773 (diff) | |
download | cpython-a6bac95a3c6eb926d3eded04e4b04a1d552053d1.zip cpython-a6bac95a3c6eb926d3eded04e4b04a1d552053d1.tar.gz cpython-a6bac95a3c6eb926d3eded04e4b04a1d552053d1.tar.bz2 |
issue10403 - Let's not use members anymore. Use 'attribute' where it denotes attribute and 'methods' where it denotes methods. Context should clarify usage.
Diffstat (limited to 'Doc/library/xmlrpc.client.rst')
-rw-r--r-- | Doc/library/xmlrpc.client.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index a62021d..bb058df 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -136,7 +136,7 @@ returning a value, which may be either returned data in a conformant type or a :class:`Fault` or :class:`ProtocolError` object indicating an error. Servers that support the XML introspection API support some common methods -grouped under the reserved :attr:`system` member: +grouped under the reserved :attr:`system` attribute: .. method:: ServerProxy.system.listMethods() @@ -310,7 +310,7 @@ Fault Objects ------------- A :class:`Fault` object encapsulates the content of an XML-RPC fault tag. Fault -objects have the following members: +objects have the following attributes: .. attribute:: Fault.faultCode @@ -359,7 +359,7 @@ ProtocolError Objects A :class:`ProtocolError` object describes a protocol error in the underlying transport layer (such as a 404 'not found' error if the server named by the URI -does not exist). It has the following members: +does not exist). It has the following attributes: .. attribute:: ProtocolError.url |