我想使用sphinx 的 autodoc-skip-member事件来选择某个 python 类上的一部分成员进行文档。
但是从 sphinx 文档中并不清楚,我找不到任何示例来说明:我在哪里放置代码来连接它?我看到Sphinx.connect并且我怀疑它在我的 conf.py 中,但是当我在 conf.py 中尝试此代码的变体时,我找不到我应该连接()的应用程序对象:
def maybe_skip_member(app, what, name, obj, skip,
options):
print app, what, name, obj, skip, options
return False
# This is not even close to correct:
#from sphinx.application import Sphinx
#Sphinx().connect('autodoc-skip-member', maybe_skip_member)
指向一个简单示例的指针将是理想的。