Back to Pandas

Class

doc/_templates/autosummary/class.rst

3.1.0.dev0710 B
Original Source

{{ fullname | escape | underline}}

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }}

{% block methods %}

{% block attributes %} {% if attributes %} .. rubric:: {{ _('Attributes') }}

.. autosummary:: {% for item in attributes %} {% if item in members and not item.startswith('_') %} ~{{ name }}.{{ item }} {% endif %} {%- endfor %} {% endif %} {% endblock %}

{% if methods %} .. rubric:: {{ _('Methods') }}

.. autosummary:: {% for item in methods %} {% if item in members and (not item.startswith('_') or item in ['call']) %} ~{{ name }}.{{ item }} {% endif %} {%- endfor %} {% endif %} {% endblock %}