Commit a5f3a507 authored by Serhiy Storchaka's avatar Serhiy Storchaka

Issue #26889: Fixed hyperlinks formatting.

parents 72ac6a76 64099ea5
...@@ -52,7 +52,7 @@ between conformable Python objects and XML on the wire. ...@@ -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 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 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 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. for a description.
The *use_builtin_types* flag can be used to cause date/time values 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 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. ...@@ -96,12 +96,12 @@ between conformable Python objects and XML on the wire.
+----------------------+-------------------------------------------------------+ +----------------------+-------------------------------------------------------+
| ``array`` | :class:`list` or :class:`tuple` containing | | ``array`` | :class:`list` or :class:`tuple` containing |
| | conformable elements. Arrays are returned as | | | conformable elements. Arrays are returned as |
| | :class:`list`\ s. | | | :class:`lists <list>`. |
+----------------------+-------------------------------------------------------+ +----------------------+-------------------------------------------------------+
| ``struct`` | :class:`dict`. Keys must be strings, values may be | | ``struct`` | :class:`dict`. Keys must be strings, values may be |
| | any conformable type. Objects of user-defined | | | any conformable type. Objects of user-defined |
| | classes can be passed in; only their :attr:`__dict__` | | | classes can be passed in; only their |
| | attribute is transmitted. | | | :attr:`~object.__dict__` attribute is transmitted. |
+----------------------+-------------------------------------------------------+ +----------------------+-------------------------------------------------------+
| ``dateTime.iso8601`` | :class:`DateTime` or :class:`datetime.datetime`. | | ``dateTime.iso8601`` | :class:`DateTime` or :class:`datetime.datetime`. |
| | Returned type depends on values of | | | Returned type depends on values of |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment