diff options
author | Éric Araujo <merwok@netwok.org> | 2010-12-26 02:18:49 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-12-26 02:18:49 (GMT) |
commit | c9562f3cbefea4aabe2328a20d64352dacd9b731 (patch) | |
tree | e07ba7a847b74e6afa74b97e7cbcbeeca012317a /Doc/reference/datamodel.rst | |
parent | 667d4b577f576323628d97f7b2ed421a2a05322f (diff) | |
download | cpython-c9562f3cbefea4aabe2328a20d64352dacd9b731.zip cpython-c9562f3cbefea4aabe2328a20d64352dacd9b731.tar.gz cpython-c9562f3cbefea4aabe2328a20d64352dacd9b731.tar.bz2 |
Fix typo spotted by Rodrigo Bernardo Pimentel (#9891)
Diffstat (limited to 'Doc/reference/datamodel.rst')
-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 adedefc..e24a8e7 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 |