I am using sphinx with the autodoc
extension, and would like to generate a list only containing the undocumented member functions in several modules, and not the documented members.
I can successfully create a list that includes both documented members and undocumented members as follows:
.. automodule:: module
:members:
:undoc-members:
Using the :members:
directive alone creates the list of documented members only, as expected.
.. automodule:: module
:members:
But using just the :undoc-members:
directive alone (i.e. omitting the :members:
flag) does not result in any list at all:
.. automodule:: module
:undoc-members:
Is there a way to automatically generate this?
(The primary documentation includes a page that shows all the documented members, but I'd find it far more useful to ensure I have written docs for each function etc by having a single page that lists any undocumented member, without showing the text for those that are documented).