File: api-summary-module.rst

package info (click to toggle)
xonsh 0.13.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,024 kB
  • sloc: python: 46,350; makefile: 136; sh: 41; xml: 17
file content (22 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ fullname | escape | underline}}

{# module level doc #}
.. currentmodule:: {{ fullname }}

.. automodule:: {{ fullname }}
    :members:
    :undoc-members:
    :inherited-members:

{%- block modules %}
{%- if modules %}

.. autosummary::
   :toctree:
   :template: api-summary-module.rst
   :recursive:
{% for item in modules %}
   {{ item }}
{% endfor %}
{% endif %}
{% endblock %}