mirror of https://github.com/Qiskit/qiskit.git
29 lines
719 B
ReStructuredText
29 lines
719 B
ReStructuredText
{# This is identical to class.rst, except for the filtering in `set wanted_methods`. -#}
|
|
|
|
{{ objname | escape | underline }}
|
|
|
|
.. currentmodule:: {{ module }}
|
|
|
|
.. autoclass:: {{ objname }}
|
|
:no-members:
|
|
:show-inheritance:
|
|
|
|
{% block attributes_summary %}
|
|
{% if attributes %}
|
|
.. rubric:: Attributes
|
|
{% for item in attributes %}
|
|
.. autoattribute:: {{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock -%}
|
|
|
|
{% block methods_summary %}
|
|
{% set wanted_methods = (methods | reject('in', inherited_members) | reject('==', '__init__') | list) %}
|
|
{% if wanted_methods %}
|
|
.. rubric:: Methods
|
|
{% for item in wanted_methods %}
|
|
.. automethod:: {{ item }}
|
|
{%- endfor %}
|
|
{% endif %}
|
|
{% endblock %}
|