File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 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+
67XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
78transport. With it, a client can call methods with parameters on a remote
89server (the server is named by a URI) and get back structured data.
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments