[Python-checkins] cpython (merge 3.5 -> default): Issue #26889: Fixed hyperlinks formatting.

serhiy.storchaka python-checkins at python.org
Sat May 7 03:07:25 EDT 2016


https://hg.python.org/cpython/rev/ea9d69a4d0fe
changeset:   101246:ea9d69a4d0fe
parent:      101243:9bdec549bad3
parent:      101245:52924d962027
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sat May 07 10:06:39 2016 +0300
summary:
  Issue #26889: Fixed hyperlinks formatting.

files:
  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
--- a/Doc/library/xmlrpc.client.rst
+++ b/Doc/library/xmlrpc.client.rst
@@ -52,7 +52,7 @@
    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 @@
    +----------------------+-------------------------------------------------------+
    | ``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                    |

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list