diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-15 15:49:20 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-15 15:49:20 (GMT) |
commit | 8ddf7c2d2bbd272d5cd738026274e97a323e52fe (patch) | |
tree | 4061a0c7d598e6b6c6dcc475d229257c1661d8c3 /Doc/library | |
parent | c8be84077bbd87e80b1697db6dbfe0fc6e5cbc2b (diff) | |
download | cpython-8ddf7c2d2bbd272d5cd738026274e97a323e52fe.zip cpython-8ddf7c2d2bbd272d5cd738026274e97a323e52fe.tar.gz cpython-8ddf7c2d2bbd272d5cd738026274e97a323e52fe.tar.bz2 |
Minor wording improvement
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/abc.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index fa34a6f..1048b24 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -11,8 +11,8 @@ -------------- -This module provides the infrastructure for defining an :term:`abstract base -class` (ABC) in Python, as outlined in :pep:`3119`; see the PEP for why this +This module provides the infrastructure for defining :term:`abstract base +classes <abstract base class>` (ABCs) 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.) |