diff options
author | Éric Araujo <merwok@netwok.org> | 2010-12-26 02:21:30 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-12-26 02:21:30 (GMT) |
commit | 75cb8f510496e5e36a0552f5702164d33bec06e1 (patch) | |
tree | 3e4bd5889d5565da9d7af3ed3c7cffdd79a5fdc0 /Doc/reference | |
parent | 5fff1479a733f6851234324fb169df472326aac3 (diff) | |
download | cpython-75cb8f510496e5e36a0552f5702164d33bec06e1.zip cpython-75cb8f510496e5e36a0552f5702164d33bec06e1.tar.gz cpython-75cb8f510496e5e36a0552f5702164d33bec06e1.tar.bz2 |
Merged revisions 87486 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87486 | eric.araujo | 2010-12-26 03:18:49 +0100 (dim., 26 déc. 2010) | 2 lines
Fix typo spotted by Rodrigo Bernardo Pimentel (#9891)
........
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index b33c1a1..5c32f85 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -618,7 +618,7 @@ Callable types 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 |