diff options
author | Georg Brandl <georg@python.org> | 2014-10-30 21:26:26 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-30 21:26:26 (GMT) |
commit | 6b4c847c4f299517ec991621710c02459d204f05 (patch) | |
tree | ce305035f3e73d3cf718f5bf445474ef8e9379c1 /Doc/library/xmlrpc.server.rst | |
parent | ed14c86facb62c4fb3fcff73c8ea3860c7dc8d29 (diff) | |
download | cpython-6b4c847c4f299517ec991621710c02459d204f05.zip cpython-6b4c847c4f299517ec991621710c02459d204f05.tar.gz cpython-6b4c847c4f299517ec991621710c02459d204f05.tar.bz2 |
Doc: fix default role usage (except in unittest mock docs)
Diffstat (limited to 'Doc/library/xmlrpc.server.rst')
-rw-r--r-- | Doc/library/xmlrpc.server.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/xmlrpc.server.rst b/Doc/library/xmlrpc.server.rst index aca4f36..37d1393 100644 --- a/Doc/library/xmlrpc.server.rst +++ b/Doc/library/xmlrpc.server.rst @@ -184,8 +184,8 @@ server:: # Print list of available methods print(s.system.listMethods()) -The following example included in `Lib/xmlrpc/server.py` module shows a server -allowing dotted names and registering a multicall function. +The following example included in the :file:`Lib/xmlrpc/server.py` module shows +a server allowing dotted names and registering a multicall function. .. warning:: |