]> granicus.if.org Git - python/commitdiff
Add some internal links.
authorRaymond Hettinger <python@rcn.com>
Tue, 30 Nov 2010 17:45:41 +0000 (17:45 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 30 Nov 2010 17:45:41 +0000 (17:45 +0000)
Doc/glossary.rst
Doc/library/collections.rst

index 4b0ab7075f30675140bebccd94f42711e3ee7b09..a051fe81b0ec3a4dd344cd2f62733e1f9f61c1bc 100644 (file)
@@ -27,7 +27,7 @@ Glossary
       :ref:`2to3-reference`.
 
    abstract base class
-      Abstract Base Classes (abbreviated ABCs) complement :term:`duck-typing` by
+      :ref:`abstract-base-classes` complement :term:`duck-typing` by
       providing a way to define interfaces when other techniques like
       :func:`hasattr` would be clumsy. Python comes with many built-in ABCs for
       data structures (in the :mod:`collections` module), numbers (in the
index 3f81c00c20dc3d3e56ebd928b13540a2f42fc650..bc3801a89d9d09dd504bd2a55ffe376c0b01843f 100644 (file)
@@ -28,7 +28,7 @@ Python's general purpose built-in containers, :class:`dict`, :class:`list`,
 =====================   ====================================================================
 
 In addition to the concrete container classes, the collections module provides
-ABCs (abstract base classes) that can be used to test whether a class provides a
+:ref:`abstract-base-classes` that can be used to test whether a class provides a
 particular interface, for example, whether it is hashable or a mapping.
 
 .. seealso::
@@ -959,6 +959,7 @@ attribute.
    subclass) or an arbitrary sequence which can be converted into a string using
    the built-in :func:`str` function.
 
+.. _abstract-base-classes:
 
 ABCs - abstract base classes
 ----------------------------