summaryrefslogtreecommitdiffstats
path: root/Doc/library/xmlrpclib.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-10-21 10:52:38 (GMT)
committerGeorg Brandl <georg@python.org>2007-10-21 10:52:38 (GMT)
commitcf3fb259329eedfa9d2c802b2ea5ced287c21e78 (patch)
treebd09350c4ac4d66064526573c19ebbcd27f77279 /Doc/library/xmlrpclib.rst
parentbb75e4e5d243a32cf31b91543b06b829c63e2c70 (diff)
downloadcpython-cf3fb259329eedfa9d2c802b2ea5ced287c21e78.zip
cpython-cf3fb259329eedfa9d2c802b2ea5ced287c21e78.tar.gz
cpython-cf3fb259329eedfa9d2c802b2ea5ced287c21e78.tar.bz2
Add :term: for generators.
Diffstat (limited to 'Doc/library/xmlrpclib.rst')
-rw-r--r--Doc/library/xmlrpclib.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/xmlrpclib.rst b/Doc/library/xmlrpclib.rst
index 5f58d9e..b3efb5c 100644
--- a/Doc/library/xmlrpclib.rst
+++ b/Doc/library/xmlrpclib.rst
@@ -325,7 +325,8 @@ encapsulate multiple calls to a remote server into a single request.
return ``None``, and only store the call name and parameters in the
:class:`MultiCall` object. Calling the object itself causes all stored calls to
be transmitted as a single ``system.multicall`` request. The result of this call
- is a generator; iterating over this generator yields the individual results.
+ is a :term:`generator`; iterating over this generator yields the individual
+ results.
A usage example of this class is ::