diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-12 10:42:08 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-10-12 10:42:08 (GMT) |
commit | 7fa822275bb9744440f1636345319feaf1669126 (patch) | |
tree | 02f85dc0dcd510c1a8516dcd2f59c11940f3d979 /Doc/library/exceptions.rst | |
parent | 35cbf16202d2bb6ed8ca6b51f8513f71d9d41ccc (diff) | |
download | cpython-7fa822275bb9744440f1636345319feaf1669126.zip cpython-7fa822275bb9744440f1636345319feaf1669126.tar.gz cpython-7fa822275bb9744440f1636345319feaf1669126.tar.bz2 |
Fix links to the __next__ method.
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index ca3ad3e..7d622c2 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -262,7 +262,7 @@ The following exceptions are the exceptions that are usually raised. .. exception:: StopIteration Raised by built-in function :func:`next` and an :term:`iterator`\'s - :meth:`__next__` method to signal that there are no further values. + :meth:`~iterator.__next__` method to signal that there are no further values. .. exception:: SyntaxError |