You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I have and autosummary directive with :toctree: (and autosummary_generate = True), then the stub files generated by autodoc also list all imported members. I don't want that. Because it is the opposite of what plain autodoc does (http://sphinx-doc.org/latest/ext/autodoc.html). And it broke my build due to warnings in imported docstrings.
Here is a small patch against the current development version which calls ModuleDocumenter.check_import() and therefore causes the summary table to not list imported members.
With plain autodoc there is a flag "imported-members", but I am not sure whether autosummary respects this option (didn't verify)
When I have and autosummary directive with :toctree: (and autosummary_generate = True), then the stub files generated by autodoc also list all imported members. I don't want that. Because it is the opposite of what plain autodoc does (http://sphinx-doc.org/latest/ext/autodoc.html). And it broke my build due to warnings in imported docstrings.
Here is a small patch against the current development version which calls
ModuleDocumenter.check_import()
and therefore causes the summary table to not list imported members.With plain autodoc there is a flag "imported-members", but I am not sure whether autosummary respects this option (didn't verify)
The text was updated successfully, but these errors were encountered: