summaryrefslogtreecommitdiffstats
path: root/Doc/library/abc.rst
diff options
context:
space:
mode:
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)
commitfa088dbd0cf20abdab011285d7f5d950ca61fb4a (patch)
treef2dd07712165120283fc9c647e4ef19d4a4890d4 /Doc/library/abc.rst
parent07e58c33896c382ebccd99ed8dc28e457ab96c45 (diff)
downloadcpython-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/abc.rst')
-rw-r--r--Doc/library/abc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst
index 9fadbd2..fa34a6f 100644
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -12,7 +12,7 @@
--------------
This module provides the infrastructure for defining an :term:`abstract base
-class` (ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why this
+class` (ABC) in Python, as outlined in :pep:`3119`; see the PEP for why this
was added to Python. (See also :pep:`3141` and the :mod:`numbers` module
regarding a type hierarchy for numbers based on ABCs.)