[Python-checkins] r87486 - python/branches/py3k/Doc/reference/datamodel.rst
eric.araujo
python-checkins at python.org
Sun Dec 26 03:18:49 CET 2010
Author: eric.araujo
Date: Sun Dec 26 03:18:49 2010
New Revision: 87486
Log:
Fix typo spotted by Rodrigo Bernardo Pimentel (#9891)
Modified:
python/branches/py3k/Doc/reference/datamodel.rst
Modified: python/branches/py3k/Doc/reference/datamodel.rst
==============================================================================
--- python/branches/py3k/Doc/reference/datamodel.rst (original)
+++ python/branches/py3k/Doc/reference/datamodel.rst Sun Dec 26 03:18:49 2010
@@ -618,7 +618,7 @@
an object passed to the C function as an implicit extra argument. An example of
a built-in method is ``alist.append()``, assuming *alist* is a list object. In
this case, the special read-only attribute :attr:`__self__` is set to the object
- denoted by *list*.
+ denoted by *alist*.
Classes
Classes are callable. These objects normally act as factories for new
More information about the Python-checkins
mailing list