[Python-checkins] r78238 - python/branches/py3k/Doc/glossary.rst

georg.brandl python-checkins at python.org
Fri Feb 19 10:10:15 CET 2010


Author: georg.brandl
Date: Fri Feb 19 10:10:15 2010
New Revision: 78238

Log:
#5341: fix parenthesis placement.

Modified:
   python/branches/py3k/Doc/glossary.rst

Modified: python/branches/py3k/Doc/glossary.rst
==============================================================================
--- python/branches/py3k/Doc/glossary.rst	(original)
+++ python/branches/py3k/Doc/glossary.rst	Fri Feb 19 10:10:15 2010
@@ -315,7 +315,7 @@
 
    iterator
       An object representing a stream of data.  Repeated calls to the iterator's
-      :meth:`__next__` (or passing it to the built-in function)  :func:`next`
+      :meth:`__next__` (or passing it to the built-in function :func:`next`)
       method return successive items in the stream.  When no more data are
       available a :exc:`StopIteration` exception is raised instead.  At this
       point, the iterator object is exhausted and any further calls to its


More information about the Python-checkins mailing list