~pythonregexp2.7/python/issue2636-11

« back to all changes in this revision

Viewing changes to Doc/library/abc.rst

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-21 17:53:26 UTC
  • mfrom: (39025.1.14 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080921175326-92vaej2hc3yuecxb
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
.. versionadded:: 2.6
11
11
 
12
 
This module provides the infrastructure for defining abstract base classes
13
 
(ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why this was added
14
 
to Python. (See also :pep:`3141` and the :mod:`numbers` module regarding a type
15
 
hierarchy for numbers based on ABCs.)
 
12
This module provides the infrastructure for defining an :term:`abstract base
 
13
class` (ABCs) in Python, as outlined in :pep:`3119`; see the PEP for why this
 
14
was added to Python. (See also :pep:`3141` and the :mod:`numbers` module
 
15
regarding a type hierarchy for numbers based on ABCs.)
16
16
 
17
17
The :mod:`collections` module has some concrete classes that derive from
18
18
ABCs; these can, of course, be further derived. In addition the