diff options
author | Georg Brandl <georg@python.org> | 2008-12-05 15:29:39 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-12-05 15:29:39 (GMT) |
commit | 9a053731458db4f8e4dad6e7f59a56c2ec58ac39 (patch) | |
tree | 47f65edc9bc6b5ab686e0f7f2e24b14e16d50587 /Doc/reference | |
parent | fe879e8a23e61c97aa461d65d0ac495a8a5f4692 (diff) | |
download | cpython-9a053731458db4f8e4dad6e7f59a56c2ec58ac39.zip cpython-9a053731458db4f8e4dad6e7f59a56c2ec58ac39.tar.gz cpython-9a053731458db4f8e4dad6e7f59a56c2ec58ac39.tar.bz2 |
#4517: add "special method" glossary entry and clarify when __getattribute__ is bypassed.
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 4dcc96f..068f0fd 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -2370,7 +2370,7 @@ the instance when looking up special methods:: True In addition to bypassing any instance attributes in the interest of -correctness, implicit special method lookup may also bypass the +correctness, implicit special method lookup generally also bypasses the :meth:`__getattribute__` method even of the object's metaclass:: >>> class Meta(type): |