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

georg.brandl python-checkins at python.org
Sun Feb 3 13:29:01 CET 2008


Author: georg.brandl
Date: Sun Feb  3 13:29:00 2008
New Revision: 60550

Modified:
   python/trunk/Doc/reference/datamodel.rst
Log:
#2003: fix sentence.


Modified: python/trunk/Doc/reference/datamodel.rst
==============================================================================
--- python/trunk/Doc/reference/datamodel.rst	(original)
+++ python/trunk/Doc/reference/datamodel.rst	Sun Feb  3 13:29:00 2008
@@ -1078,7 +1078,7 @@
 a single built-in type, called ``instance``.
 
 New-style classes were introduced in Python 2.2 to unify classes and types.  A
-new-style class neither more nor less than a user-defined type.  If *x* is an
+new-style class is neither more nor less than a user-defined type.  If *x* is an
 instance of a new-style class, then ``type(x)`` is the same as ``x.__class__``.
 
 The major motivation for introducing new-style classes is to provide a unified


More information about the Python-checkins mailing list