| {{ fullname | escape | underline}} | |
| .. currentmodule:: {{ module }} | |
| .. autoclass:: {{ objname }} | |
| {% block methods %} | |
| {% if methods %} | |
| .. rubric:: {{ _('Methods') }} | |
| .. autosummary:: | |
| {% for item in methods %} | |
| {%- if item not in inherited_members %} | |
| ~{{ name }}.{{ item }} | |
| {%- endif %} | |
| {%- endfor %} | |
| {% endif %} | |
| {% endblock %} | |