diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-04 16:42:38 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-04 16:42:38 (GMT) |
commit | fa088dbd0cf20abdab011285d7f5d950ca61fb4a (patch) | |
tree | f2dd07712165120283fc9c647e4ef19d4a4890d4 /Doc/library/numbers.rst | |
parent | 07e58c33896c382ebccd99ed8dc28e457ab96c45 (diff) | |
download | cpython-fa088dbd0cf20abdab011285d7f5d950ca61fb4a.zip cpython-fa088dbd0cf20abdab011285d7f5d950ca61fb4a.tar.gz cpython-fa088dbd0cf20abdab011285d7f5d950ca61fb4a.tar.bz2 |
Improve glossary entry for ABCs.
- Rename reST target name for collections ABCs to avoid collisions
- Add link to importlib ABCs (collections, numbers and io ABCs were already
linked)
- Link to glossary entry from numbers module doc (other modules already do it)
Diffstat (limited to 'Doc/library/numbers.rst')
-rw-r--r-- | Doc/library/numbers.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst index df8d521..ad33396 100644 --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -5,9 +5,9 @@ :synopsis: Numeric abstract base classes (Complex, Real, Integral, etc.). -The :mod:`numbers` module (:pep:`3141`) defines a hierarchy of numeric abstract -base classes which progressively define more operations. None of the types -defined in this module can be instantiated. +The :mod:`numbers` module (:pep:`3141`) defines a hierarchy of numeric +:term:`abstract base classes <abstract base class>` which progressively define +more operations. None of the types defined in this module can be instantiated. .. class:: Number |