Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 834 Bytes

File metadata and controls

40 lines (31 loc) · 834 Bytes

{{ objname | escape | underline }}

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }}()
    :members:
    :special-members:
    :inherited-members:
    :no-undoc-members:

    {% block attributes %}
    {% if attributes %}
    .. rubric:: Attributes

    .. autosummary::
        :nosignatures:

    {% for item in attributes %}
    {% if item[0] != '_' %}
        ~{{ name }}.{{ item }}
    {% endif %}
    {%- endfor %}
    {% endif %}
    {% endblock %}

    {% block methods %}
    {% if (methods | reject('in', inherited_members) | list | count) != 0 %}

    .. rubric:: Methods

    .. autosummary::
        :nosignatures:

    {% for item in methods %}
    {% if item not in inherited_members and item[0] != '_' %}
        ~{{ name }}.{{ item }}
    {% endif %}
    {%- endfor %}
    {% endif %}
    {% endblock %}