diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-12 10:45:38 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-12 10:45:38 (GMT) |
commit | 1dd7c304194572c3c5e6fd943bc0aac49a4c481c (patch) | |
tree | 8ccaddd376941640718f3795c098d5a6b515dac4 /Doc/glossary.rst | |
parent | eb818193b3445f592b26804b2030fff81625e116 (diff) | |
parent | 7fa822275bb9744440f1636345319feaf1669126 (diff) | |
download | cpython-1dd7c304194572c3c5e6fd943bc0aac49a4c481c.zip cpython-1dd7c304194572c3c5e6fd943bc0aac49a4c481c.tar.gz cpython-1dd7c304194572c3c5e6fd943bc0aac49a4c481c.tar.bz2 |
Merge __next__ method link fixes with 3.2.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 68dc3b7..35bdb96 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -365,7 +365,7 @@ Glossary iterator An object representing a stream of data. Repeated calls to the iterator's - :meth:`__next__` method (or passing it to the built-in function + :meth:`~iterator.__next__` method (or passing it to the built-in function :func:`next`) 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 |