You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
699 B
41 lines
699 B
|
2 years ago
|
{{ fullname | escape | underline}}
|
||
|
|
|
||
|
|
EugenioPOPOPPOPOPOPOPOPOPOP
|
||
|
|
|
||
|
|
|
||
|
|
.. currentmodule:: {{ module }}
|
||
|
|
|
||
|
|
.. autoclass:: {{ objname }}
|
||
|
|
:members:
|
||
|
|
:show-inheritance:
|
||
|
|
:inherited-members:
|
||
|
|
|
||
|
|
POPOPPOPOPOPOPOPOPOP
|
||
|
|
|
||
|
|
.. {% block methods %}
|
||
|
|
.. automethod:: __init__
|
||
|
|
|
||
|
|
POPOPPOPOPOPOPOPOPOP 2
|
||
|
|
|
||
|
|
|
||
|
|
{% 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 %}
|