8d148b639b
change to src layout
39 lines
916 B
ReStructuredText
39 lines
916 B
ReStructuredText
{{ fullname | escape | underline}}
|
|
|
|
.. currentmodule:: {{ module }}
|
|
|
|
.. autoclass:: {{ objname }}
|
|
:exclude-members: {% for item in methods %}{%- if not item.startswith('_') or item in ['__call__'] %}{{ item }}, {% endif %}{%- endfor %}
|
|
|
|
{%- block methods %}
|
|
{% if methods %}
|
|
.. rubric:: Methods
|
|
|
|
.. autosummary::
|
|
:toctree:
|
|
|
|
{% for item in methods %}
|
|
{%- if not item.startswith('_') or item in ['__call__'] %} ~{{ name }}.{{ item }}
|
|
{% endif %}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
|
|
{%- block attributes %}
|
|
{%- if attributes %}
|
|
.. rubric:: Properties
|
|
|
|
.. autosummary::
|
|
:toctree:
|
|
|
|
{% for item in attributes %}
|
|
{%- if not item.startswith('_') or item in ['__call__'] %} ~{{ name }}.{{ item }}
|
|
{% endif %}
|
|
{%- endfor %}
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
|
|
.. _sphx_glr_backref_{{ fullname }}:
|
|
.. minigallery:: {{ objname }}
|
|
:add-heading:
|