From: Georg Brandl Date: Fri, 19 Feb 2010 09:10:15 +0000 (+0000) Subject: #5341: fix parenthesis placement. X-Git-Tag: v3.2a1~1678 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c247d639fb3b0732080adce7d6c101f5bff05fd;p=thirdparty%2FPython%2Fcpython.git #5341: fix parenthesis placement. --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 12396a717212..8ec9e613f4cc 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -315,7 +315,7 @@ Glossary 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