[Python-checkins] r64021 - python/trunk/Doc/library/abc.rst

georg.brandl python-checkins at python.org
Sat Jun 7 20:16:44 CEST 2008


Author: georg.brandl
Date: Sat Jun  7 20:16:12 2008
New Revision: 64021

Log:
X-ref to numbers module.


Modified:
   python/trunk/Doc/library/abc.rst

Modified: python/trunk/Doc/library/abc.rst
==============================================================================
--- python/trunk/Doc/library/abc.rst	(original)
+++ python/trunk/Doc/library/abc.rst	Sat Jun  7 20:16:12 2008
@@ -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


More information about the Python-checkins mailing list