summaryrefslogtreecommitdiffstats
path: root/Doc/glossary.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-10-12 10:42:08 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-10-12 10:42:08 (GMT)
commit7fa822275bb9744440f1636345319feaf1669126 (patch)
tree02f85dc0dcd510c1a8516dcd2f59c11940f3d979 /Doc/glossary.rst
parent35cbf16202d2bb6ed8ca6b51f8513f71d9d41ccc (diff)
downloadcpython-7fa822275bb9744440f1636345319feaf1669126.zip
cpython-7fa822275bb9744440f1636345319feaf1669126.tar.gz
cpython-7fa822275bb9744440f1636345319feaf1669126.tar.bz2
Fix links to the __next__ method.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r--Doc/glossary.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst
index 2151350..3c11de7 100644
--- a/Doc/glossary.rst
+++ b/Doc/glossary.rst
@@ -354,7 +354,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