diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-15 15:51:05 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-15 15:51:05 (GMT) |
commit | a1969e0cbf69aefa7d419c6b848bc969b97e3d2f (patch) | |
tree | f2af84ed9f6c363b9903a80dd86c9f643ea4a948 /Doc/library/abc.rst | |
parent | 04fe64bf17a7a3e9c6e3c90cbfdf28c98ffe6c45 (diff) | |
parent | 8ddf7c2d2bbd272d5cd738026274e97a323e52fe (diff) | |
download | cpython-a1969e0cbf69aefa7d419c6b848bc969b97e3d2f.zip cpython-a1969e0cbf69aefa7d419c6b848bc969b97e3d2f.tar.gz cpython-a1969e0cbf69aefa7d419c6b848bc969b97e3d2f.tar.bz2 |
Merge wording change from 3.2
Diffstat (limited to 'Doc/library/abc.rst')
-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 030d286..2776dbf 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.) |