Docs: list inherited C/Python API functions

This commit is contained in:
Campbell Barton 2020-05-11 16:43:49 +10:00
parent 63849aac95
commit 364780bce5
1 changed files with 2 additions and 0 deletions

View File

@ -1482,6 +1482,8 @@ def pyrna2sphinx(basepath):
lines.append(" * :class:`%s.%s`\n" % (base.identifier, func.identifier))
for identifier, py_func in base.get_py_functions():
lines.append(" * :class:`%s.%s`\n" % (base.identifier, identifier))
for identifier, py_func in base.get_py_c_functions():
lines.append(" * :class:`%s.%s`\n" % (base.identifier, identifier))
if lines:
fw(".. rubric:: Inherited Functions\n\n")