2022-02-16 20:49:35 +01:00
|
|
|
{{ fullname | escape | underline }}
|
2022-02-16 15:16:49 +01:00
|
|
|
|
|
|
|
.. currentmodule:: {{ module }}
|
|
|
|
|
|
|
|
.. autoclass:: {{ objname }}
|
|
|
|
|
|
|
|
{% block methods %}
|
|
|
|
{% if methods %}
|
|
|
|
.. rubric:: {{ _('Methods') }}
|
|
|
|
|
|
|
|
.. autosummary::
|
2022-02-16 20:49:35 +01:00
|
|
|
:toctree:
|
2022-02-16 15:16:49 +01:00
|
|
|
{% for item in methods %}
|
|
|
|
~{{ name }}.{{ item }}
|
|
|
|
{%- endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block attributes %}
|
|
|
|
{% if attributes %}
|
|
|
|
.. rubric:: {{ _('Attributes') }}
|
|
|
|
|
|
|
|
.. autosummary::
|
2022-02-16 20:49:35 +01:00
|
|
|
:toctree:
|
2022-02-16 15:16:49 +01:00
|
|
|
{% for item in attributes %}
|
|
|
|
~{{ name }}.{{ item }}
|
|
|
|
{%- endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|