]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
X-ref to numbers module.
authorGeorg Brandl <georg@python.org>
Sat, 7 Jun 2008 18:16:12 +0000 (18:16 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 7 Jun 2008 18:16:12 +0000 (18:16 +0000)
Doc/library/abc.rst

index a3ce2a71b883db4eb5b73261206573b237533923..5eee7cc1f6f3614707a8d26fdca8b4ce0db93484 100644 (file)
@@ -10,9 +10,9 @@
 .. versionadded:: 2.6
 
 This module provides the infrastructure for defining abstract base classes
-(ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why this
-was added to Python. (See also, :pep:`3141` regarding a type hierarchy
-for numbers based on ABCs.)
+(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.)
 
 The :mod:`collections` module has some concrete classes that derive from
 ABCs; these can, of course, be further derived. In addition the