{% if push_state_url %} {% endif %}
{% if klass.attributes %}

Attributes

{% for name, attributes in klass.attributes.items() %} {% for attribute in attributes %} {% endfor %} {% endfor %}
  Defined in
{{ name }} = {{ attribute.object|e }} {{ attribute.defining_class }}
{% endif %} {% if klass.methods %}

Methods

{% for name, declarations in klass.methods.items() %} {% for declaration in declarations %}

{{ name }}{{ declaration.arguments }} [{{ declaration.defining_class.__name__ }}]

{{ declaration.docstring|e }}

Found on lines {{ declaration.lines.start }} to {{ declaration.lines.start+declaration.lines.total }} of {{ declaration.file }}

{{ declaration.code }}
{% endfor %} {% endfor %} {% endif %}