Skip to content

Commit

Permalink
Fixup: Reflect the comments
Browse files Browse the repository at this point in the history
  • Loading branch information
koyuki7w committed Dec 10, 2024
1 parent fb58c92 commit 8551043
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Doc/library/xmlrpc.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
.. module:: xmlrpc

:mod:`!xmlrpc` --- XMLRPC server and client modules
===================================================

.. module:: xmlrpc
:synopsis: Server and client modules implementing XML-RPC.

XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
transport. With it, a client can call methods with parameters on a remote
server (the server is named by a URI) and get back structured data.
Expand Down
6 changes: 3 additions & 3 deletions Doc/whatsnew/3.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ changed.
separate *mutable* type to hold buffered binary data,
:class:`bytearray`. Nearly all APIs that accept :class:`bytes` also
accept :class:`bytearray`. The mutable API is based on
:class:`collections.abc.MutableSequence`.
:class:`collections.MutableSequence <collections.abc.MutableSequence>`.

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

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

0 comments on commit 8551043

Please sign in to comment.