sphinx-autodoc-example/docs/simple.rst

19 lines
384 B
ReStructuredText
Raw Normal View History

2020-07-21 06:58:39 +02:00
More info
---------------------------------
Here's a second file which could provide some detail on a particular module,
class, or concept.
It can include specific function docs here:
.. autofunction:: math.log
2020-07-21 07:10:33 +02:00
And here's the docs for our second module. We'll include ``undoc-members`` this
time:
2020-07-21 06:58:39 +02:00
.. automodule:: simple
:members:
2020-07-21 07:10:33 +02:00
:undoc-members:
2020-07-21 06:58:39 +02:00
2020-07-21 07:10:33 +02:00
And that's all she wrote.