diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-07 07:05:02 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-07 07:05:02 (GMT) |
commit | 64099ea58ea61c8f37c1fd9f673e0ded59600209 (patch) | |
tree | a5a469d33e1a9219e872ca926d2f56557d9787c8 /Doc | |
parent | da7880ad95adfcc0e87e2fdf5721d68b30db52ba (diff) | |
download | cpython-64099ea58ea61c8f37c1fd9f673e0ded59600209.zip cpython-64099ea58ea61c8f37c1fd9f673e0ded59600209.tar.gz cpython-64099ea58ea61c8f37c1fd9f673e0ded59600209.tar.bz2 |
Issue #26889: Fixed hyperlinks formatting.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/xmlrpc.client.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index b6e3fc3..37a7076 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -52,7 +52,7 @@ between conformable Python objects and XML on the wire. XML; the default behaviour is for ``None`` to raise a :exc:`TypeError`. This is a commonly-used extension to the XML-RPC specification, but isn't supported by all clients and servers; see `http://ontosys.com/xml-rpc/extensions.php - <https://web.archive.org/web/20130120074804/http://ontosys.com/xml-rpc/extensions.php>` + <https://web.archive.org/web/20130120074804/http://ontosys.com/xml-rpc/extensions.php>`_ for a description. The *use_builtin_types* flag can be used to cause date/time values to be presented as :class:`datetime.datetime` objects and binary data to be @@ -96,12 +96,12 @@ between conformable Python objects and XML on the wire. +----------------------+-------------------------------------------------------+ | ``array`` | :class:`list` or :class:`tuple` containing | | | conformable elements. Arrays are returned as | - | | :class:`list`\ s. | + | | :class:`lists <list>`. | +----------------------+-------------------------------------------------------+ | ``struct`` | :class:`dict`. Keys must be strings, values may be | | | any conformable type. Objects of user-defined | - | | classes can be passed in; only their :attr:`__dict__` | - | | attribute is transmitted. | + | | classes can be passed in; only their | + | | :attr:`~object.__dict__` attribute is transmitted. | +----------------------+-------------------------------------------------------+ | ``dateTime.iso8601`` | :class:`DateTime` or :class:`datetime.datetime`. | | | Returned type depends on values of | |