{%- extends "!layout.html" %} {% block sidebartitle %} {%- if theme_display_version %} {%- set nav_version = version %} {%- if READTHEDOCS and current_version %} {%- set nav_version = current_version %} {%- endif %} {%- if nav_version %}
{{ nav_version }}
{%- endif %} {%- endif %} {%- include "searchbox.html" %} {%- endblock %} {{ fullname | escape | underline}} .. currentmodule:: {{ module }} .. autoclass:: {{ objname }} :members: :show-inheritance: :inherited-members: :special-members: __call__, __add__, __mul__ {% block methods %} {% if methods %} .. rubric:: {{ _('Methods') }} .. autosummary:: :nosignatures: {% for item in methods %} {%- if not item.startswith('_') %} ~{{ name }}.{{ item }} {%- endif -%} {%- endfor %} {% endif %} {% endblock %} {% block attributes %} {% if attributes %} .. rubric:: {{ _('Attributes') }} .. autosummary:: {% for item in attributes %} ~{{ name }}.{{ item }} {%- endfor %} {% endif %} {% endblock %}