从Sphinx autodoc扩展中的文档中排除静态成员

时间:2017-07-20 09:35:46

标签: python python-sphinx autodoc

我正在使用Sphinx autodoc扩展来记录我的Python项目。我的课程文档中有以下内容:

.. automodule:: ClassName
    :members:
    :undoc-members:
    :show-inheritance:

我正在记录的班级有静态成员,我不希望将其包含在文档中。有没有办法这样做?

1 个答案:

答案 0 :(得分:1)

您的问题显示没有尝试研究或您阅读文档。在提问之前请将来这样做。

请参阅.. automodule::下的选项:exclude-members:的文档以了解用法。