[e5f1db]: / docs / _templates / class_no_inherited.rst

Download this file

70 lines (53 with data), 1.3 kB

{{ fullname | escape | underline}}

{% block attributes %} {% if attributes %} Attributes table ~~~~~~~~~~~~~~~~

{% for item in attributes %}
{%- if item not in inherited_members%}
~{{ fullname }}.{{ item }}

{%- endif -%}

{%- endfor %} {% endif %} {% endblock %}

{% block methods %} {% if methods %} Methods table ~~~~~~~~~~~~~~

{% for item in methods %}
{%- if item != '__init__' and item not in inherited_members%} ~{{ fullname }}.{{ item }} {%- endif -%}

{%- endfor %} {% endif %} {% endblock %}

{% block attributes_documentation %} {% if attributes %} Attributes ~~~~~~~~~~

{% for item in attributes %} {{ item }} ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

{%- endfor %}

{% endif %} {% endblock %}

{% block methods_documentation %} {% if methods %} Methods ~~~~~~~

{% for item in methods %} {%- if item != '__init__' and item not in inherited_members%} {{ item }} ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. automethod:: {{ [objname, item] | join(".") }} {%- endif -%} {%- endfor %}

{% endif %} {% endblock %}