Skip to content

Commit 8551043

Browse files
author
Yuki Kobayashi
committed
Fixup: Reflect the comments
1 parent fb58c92 commit 8551043

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

Doc/library/xmlrpc.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
.. module:: xmlrpc
2-
31
:mod:`!xmlrpc` --- XMLRPC server and client modules
42
===================================================
53

4+
.. module:: xmlrpc
5+
:synopsis: Server and client modules implementing XML-RPC.
6+
67
XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
78
transport. With it, a client can call methods with parameters on a remote
89
server (the server is named by a URI) and get back structured data.

Doc/whatsnew/3.0.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ changed.
269269
separate *mutable* type to hold buffered binary data,
270270
:class:`bytearray`. Nearly all APIs that accept :class:`bytes` also
271271
accept :class:`bytearray`. The mutable API is based on
272-
:class:`collections.abc.MutableSequence`.
272+
:class:`collections.MutableSequence <collections.abc.MutableSequence>`.
273273

274274
* All backslashes in raw string literals are interpreted literally.
275275
This means that ``'\U'`` and ``'\u'`` escapes in raw strings are not
@@ -533,8 +533,8 @@ consulted for longer descriptions.
533533
* :ref:`pep-3119`. The :mod:`abc` module and the ABCs defined in the
534534
:mod:`collections` module plays a somewhat more prominent role in
535535
the language now, and built-in collection types like :class:`dict`
536-
and :class:`list` conform to the :class:`collections.abc.MutableMapping`
537-
and :class:`collections.abc.MutableSequence` ABCs, respectively.
536+
and :class:`list` conform to the :class:`collections.MutableMapping <collections.abc.MutableMapping>`
537+
and :class:`collections.MutableSequence <collections.abc.MutableSequence>` ABCs, respectively.
538538

539539
* :ref:`pep-3127`. As mentioned above, the new octal literal
540540
notation is the only one supported, and binary literals have been

0 commit comments

Comments
 (0)