File: module.rst

package info (click to toggle)
python-prance 25.4.8.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,140 kB
  • sloc: python: 3,381; makefile: 205
file content (56 lines) | stat: -rw-r--r-- 788 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{{ fullname }}
{{ underline }}

.. toctree::

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

{% block exceptions %}
{% if exceptions: %}

Exceptions
----------

{% for excname in exceptions: %}
.. autoexception:: {{ excname }}
   :members:
   :inherited-members:
   :show-inheritance:
{% endfor %}

{% endif %}
{% endblock %}

{% block classes %}
{% if classes %}

Classes
-------

{% for classname in classes: %}
.. autoclass:: {{ classname }}
   :members:
   :undoc-members:
   :inherited-members:
   :show-inheritance:
{% endfor %}

{% endif %}
{% endblock %}

{% block functions %}
{% if functions %}

Functions
---------

{% for func in functions: %}
.. autofunction:: {{ func }}
{% endfor %}

{% endif %}
{% endblock %}