diff options
author | Éric Araujo <merwok@netwok.org> | 2011-09-01 01:20:13 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-09-01 01:20:13 (GMT) |
commit | 7af8ebb6ce7576a629206d9c063c0914b9b576bc (patch) | |
tree | 36cc415b68f793b031bd3f035e4a45f4efc74695 /Doc/glossary.rst | |
parent | 37b5f9eebc0d7ce43c7e38e4ccd6d8ad904007b5 (diff) | |
download | cpython-7af8ebb6ce7576a629206d9c063c0914b9b576bc.zip cpython-7af8ebb6ce7576a629206d9c063c0914b9b576bc.tar.gz cpython-7af8ebb6ce7576a629206d9c063c0914b9b576bc.tar.bz2 |
Adapt/remove mentions of functions gone in 3.x
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 63d4c2b..3b211ae 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -492,7 +492,7 @@ Glossary :func:`builtins.open` and :func:`os.open` are distinguished by their namespaces. Namespaces also aid readability and maintainability by making it clear which module implements a function. For instance, writing - :func:`random.seed` or :func:`itertools.izip` makes it clear that those + :func:`random.seed` or :func:`itertools.islice` makes it clear that those functions are implemented by the :mod:`random` and :mod:`itertools` modules, respectively. |