[Python-checkins] r80651 - python/trunk/Doc/reference/datamodel.rst

andrew.kuchling python-checkins at python.org
Fri Apr 30 15:46:55 CEST 2010


Author: andrew.kuchling
Date: Fri Apr 30 15:46:55 2010
New Revision: 80651

Log:
Minor grammar re-wording

Modified:
   python/trunk/Doc/reference/datamodel.rst

Modified: python/trunk/Doc/reference/datamodel.rst
==============================================================================
--- python/trunk/Doc/reference/datamodel.rst	(original)
+++ python/trunk/Doc/reference/datamodel.rst	Fri Apr 30 15:46:55 2010
@@ -1772,7 +1772,7 @@
 
 In particular, the metaclass :class:`abc.ABCMeta` implements these methods in
 order to allow the addition of Abstract Base Classes (ABCs) as "virtual base
-classes" to any class or type (including built-in types), and including to other
+classes" to any class or type (including built-in types), including other
 ABCs.
 
 .. method:: class.__instancecheck__(self, instance)
@@ -1791,7 +1791,7 @@
 
 Note that these methods are looked up on the type (metaclass) of a class.  They
 cannot be defined as class methods in the actual class.  This is consistent with
-the lookup of special methods that are called on instances, only that in this
+the lookup of special methods that are called on instances, only in this
 case the instance is itself a class.
 
 .. seealso::


More information about the Python-checkins mailing list