diff options
author | Yuki Kobayashi <drsuaimqjgar@gmail.com> | 2024-12-10 10:22:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-10 10:22:37 (GMT) |
commit | 8dbdbad6e085564ec20109fc8277fa54b3fcc2db (patch) | |
tree | 5b173205dd932ff86ad5b8d97bc30bdfc7495f6d /Doc/library | |
parent | 4331832db02ff4a7598dcdd99cae31087173dce0 (diff) | |
download | cpython-8dbdbad6e085564ec20109fc8277fa54b3fcc2db.zip cpython-8dbdbad6e085564ec20109fc8277fa54b3fcc2db.tar.gz cpython-8dbdbad6e085564ec20109fc8277fa54b3fcc2db.tar.bz2 |
gh-101100: Fix sphinx warnings in `whatsnew/3.0.rst` (#127662)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/xmlrpc.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/xmlrpc.rst b/Doc/library/xmlrpc.rst index 5f0a2cf..a93d08f 100644 --- a/Doc/library/xmlrpc.rst +++ b/Doc/library/xmlrpc.rst @@ -1,6 +1,9 @@ :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. |