Commit 730afd91 authored by Georg Brandl's avatar Georg Brandl

#5341: fix parenthesis placement.

parent 0342f766
...@@ -315,7 +315,7 @@ Glossary ...@@ -315,7 +315,7 @@ Glossary
iterator iterator
An object representing a stream of data. Repeated calls to the iterator's 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 method return successive items in the stream. When no more data are
available a :exc:`StopIteration` exception is raised instead. At this available a :exc:`StopIteration` exception is raised instead. At this
point, the iterator object is exhausted and any further calls to its point, the iterator object is exhausted and any further calls to its
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment