Skip to main content

autodoc_skip_member_handler

Handler for autodoc-skip-member event.

def autodoc_skip_member_handler(
app: Sphinx,
what: string,
name: string,
obj: object,
skip: boolean,
options: object
) - > boolean|null

Handler for autodoc-skip-member event.

Parameters

NameTypeDescription
appSphinxThe Sphinx application object instance.
whatstringThe type of the object which the docstring belongs to (e.g., 'class', 'method').
namestringThe fully qualified name of the object.
objobjectThe object itself, checked to see if it is a Celery BaseTask with a wrapped function.
skipbooleanA boolean indicating if autodoc would skip this member by default.
optionsobjectThe options given to the directive.

Returns

TypeDescription
`booleannull`