Commit 8ab816cf authored by Peter Todd's avatar Peter Todd

Add __getattribute__ to documentation.

parent 3d5bc03f
......@@ -224,6 +224,11 @@ or bad things could happen (see note 3).
<td>self, name</td>
<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>
......
......@@ -39,6 +39,8 @@ General
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __getattr__ |self, name | object | Get attribute |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __getattribute__ |self, name | object | Get attribute, unconditionally |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __setattr__ |self, name, val | | Set attribute |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __delattr__ |self, name | | Delete attribute |
......
......@@ -188,6 +188,8 @@ General
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __getattr__ |self, name | object | Get attribute |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __getattribute__ |self, name | object | Get attribute, unconditionally |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __setattr__ |self, name, val | | Set attribute |
+-----------------------+---------------------------------------+-------------+-----------------------------------------------------+
| __delattr__ |self, name | | Delete attribute |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment