summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorPeter Todd <pete@petertodd.org>2012-05-04 00:59:58 -0400
committerPeter Todd <pete@petertodd.org>2012-05-04 01:08:18 -0400
commit8ab816cf1fee1a5bfeacfa1a2a6c68e1d58dffe2 (patch)
treebf368635eac6723aca831309f1e36afb20b7e746 /Doc
parent3d5bc03f1e7f4e3f34cec3131fe5cb0d0a177a18 (diff)
downloadcython-8ab816cf1fee1a5bfeacfa1a2a6c68e1d58dffe2.tar.gz
Add __getattribute__ to documentation.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/special_methods.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/special_methods.html b/Doc/special_methods.html
index ecde87eed..dab3d3b72 100644
--- a/Doc/special_methods.html
+++ b/Doc/special_methods.html
@@ -225,6 +225,11 @@ or bad things could happen (see note 3).
<td>object</td>
<td>Get attribute</td>
</tr>
+ <td><tt>__getattribute__</tt></td>
+ <td>self, name</td>
+ <td>object</td>
+ <td>Get attribute, unconditionally</td>
+ </tr>
<tr>
<td><tt>__setattr__</tt></td>
<td>self, name, val</td>