1234567891011121314 |
- {% if obj.display %}
- .. function:: {{ obj.short_name }}({{ obj.args }}){% if obj.return_annotation is not none %} -> {{ obj.return_annotation }}{% endif %}
- {% if sphinx_version >= (2, 1) %}
- {% for property in obj.properties %}
- :{{ property }}:
- {% endfor %}
- {% endif %}
- {% if obj.docstring %}
- {{ obj.docstring|prepare_docstring|indent(3) }}
- {% else %}
- {% endif %}
- {% endif %}
|