You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
693 B
40 lines
693 B
{{ fullname }}
|
|
{{ underline }}
|
|
|
|
.. automodule:: {{ fullname }}
|
|
|
|
{% block functions %}
|
|
{% if functions %}
|
|
.. rubric:: Functions
|
|
|
|
.. autosummary::
|
|
{% for item in functions %}
|
|
{{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block classes %}
|
|
{% if classes %}
|
|
.. rubric:: Classes
|
|
|
|
.. autosummary::
|
|
:toctree:
|
|
:template: class.rst
|
|
|
|
{% for item in classes %}
|
|
{{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block exceptions %}
|
|
{% if exceptions %}
|
|
.. rubric:: Exceptions
|
|
|
|
.. autosummary::
|
|
{% for item in exceptions %}
|
|
{{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %} |