From 364780bce51b115e12628d2cfc630d00cc76ff1b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 11 May 2020 16:43:49 +1000 Subject: [PATCH] Docs: list inherited C/Python API functions --- doc/python_api/sphinx_doc_gen.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py index 15108fe2aa2..6febbbf2ded 100644 --- a/doc/python_api/sphinx_doc_gen.py +++ b/doc/python_api/sphinx_doc_gen.py @@ -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")