summaryrefslogtreecommitdiff
path: root/tests/root/autodoc.txt
blob: aa0dffba15da5ff404b6c3d08bba5ae2e48bd449 (plain)
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
Autodoc tests
=============

Just testing a few autodoc possibilities...

.. automodule:: util

.. automodule:: test_autodoc
   :members:

.. autofunction:: function

.. autoclass:: Class
   :inherited-members:

   Additional content.

.. autoclass:: Outer
   :members: Inner

.. autoattribute:: Class.docattr

.. autoexception:: CustomEx
   :members: f

.. autoclass:: CustomDict
   :show-inheritance:
   :members:


.. automodule:: autodoc_fodder
   :noindex:

   .. autoclass:: MarkupError


.. currentmodule:: test_autodoc

.. autoclass:: InstAttCls
   :members:

   All members (5 total)

.. autoclass:: InstAttCls
   :members: ca1, ia1

   Specific members (2 total)

.. automodule:: autodoc_missing_imports