[Bf-blender-cvs] [364780bce51] master: Docs: list inherited C/Python API functions

Campbell Barton noreply at git.blender.org
Mon May 11 08:45:06 CEST 2020


Commit: 364780bce51b115e12628d2cfc630d00cc76ff1b
Author: Campbell Barton
Date:   Mon May 11 16:43:49 2020 +1000
Branches: master
https://developer.blender.org/rB364780bce51b115e12628d2cfc630d00cc76ff1b

Docs: list inherited C/Python API functions

===================================================================

M	doc/python_api/sphinx_doc_gen.py

===================================================================

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")



More information about the Bf-blender-cvs mailing list