12345678910111213141516171819202122232425262728293031323334 |
- {{ fullname | escape | underline}}
- {{ release }}
- .. currentmodule:: {{ module }}
- .. autoclass:: {{ objname }}
- :members:
- :show-inheritance:
- :inherited-members:
- {% block methods %}
- .. automethod:: __init__
- {% if methods %}
- .. rubric:: {{ _('Methods') }}
- .. autosummary::
- {% for item in methods %}
- ~{{ name }}.{{ item }}
- {%- endfor %}
- {% endif %}
- {% endblock %}
- {% block attributes %}
- {% if attributes %}
- .. rubric:: {{ _('Attributes') }}
- .. autosummary::
- {% for item in attributes %}
- ~{{ name }}.{{ item }}
- {%- endfor %}
- {% endif %}
- {% endblock %}
|