diff options
author | Raymond Hettinger <python@rcn.com> | 2011-02-10 08:09:36 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-02-10 08:09:36 (GMT) |
commit | 3029affc85d729aee385646db23fa290c64b02b7 (patch) | |
tree | a779065bbc7273cc6837786ee4c6408ed0a4d4eb /Doc/library/xmlrpc.client.rst | |
parent | a2f154459aa5ac08429160bdbcd9d2a146ac1e79 (diff) | |
download | cpython-3029affc85d729aee385646db23fa290c64b02b7.zip cpython-3029affc85d729aee385646db23fa290c64b02b7.tar.gz cpython-3029affc85d729aee385646db23fa290c64b02b7.tar.bz2 |
Add missing source links.
Diffstat (limited to 'Doc/library/xmlrpc.client.rst')
-rw-r--r-- | Doc/library/xmlrpc.client.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst index d25cbaf..a62021d 100644 --- a/Doc/library/xmlrpc.client.rst +++ b/Doc/library/xmlrpc.client.rst @@ -10,6 +10,10 @@ .. XXX Not everything is documented yet. It might be good to describe Marshaller, Unmarshaller, getparser, dumps, loads, and Transport. +**Source code:** :source:`Lib/xmlrpc/client.py` + +-------------- + 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. This module |