diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2009-01-16 01:56:39 -0700 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2009-01-16 01:56:39 -0700 |
commit | 462bac3c13de92511085b080ee5b9999f275a1e3 (patch) | |
tree | 1e4cc1c330977533850e39e3c10bdfd1d7a6b099 | |
parent | f2e479c33e84367f29d5063dc00c80c49f25f3c9 (diff) | |
download | freeipa-462bac3c13de92511085b080ee5b9999f275a1e3.tar.gz freeipa-462bac3c13de92511085b080ee5b9999f275a1e3.tar.xz freeipa-462bac3c13de92511085b080ee5b9999f275a1e3.zip |
Added docstring cross-references between rpc and rpcserver modules
-rw-r--r-- | ipalib/rpc.py | 6 | ||||
-rw-r--r-- | ipaserver/rpcserver.py | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ipalib/rpc.py b/ipalib/rpc.py index 486aff8a4..acfdae95d 100644 --- a/ipalib/rpc.py +++ b/ipalib/rpc.py @@ -18,13 +18,15 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Shared RPC client/server functionality. +RPC client and shared RPC client/server functionality. This module adds some additional functionality on top of the ``xmlrpclib`` module in the Python standard library. For documentation on the ``xmlrpclib`` module, see: http://docs.python.org/library/xmlrpclib.html + +Also see the `ipaserver.rpcserver` module. """ from types import NoneType @@ -130,7 +132,7 @@ def xml_dumps(params, methodname=None, methodresponse=False, encoding='UTF-8'): def xml_loads(data): """ - Decode the XML-RPC packet in ``data``, transparently unwrapped its params. + Decode the XML-RPC packet in ``data``, transparently unwrapping its params. This function will decode the XML-RPC packet in ``data`` using ``xmlrpclib.loads()`` (from the Python standard library). If ``data`` diff --git a/ipaserver/rpcserver.py b/ipaserver/rpcserver.py index 55d6f2160..d7f2ee1a6 100644 --- a/ipaserver/rpcserver.py +++ b/ipaserver/rpcserver.py @@ -19,6 +19,8 @@ """ RPC server. + +Also see the `ipalib.rpc` module. """ from xmlrpclib import Fault |