Blender Git Commits
October 7, 2020, 19:32 (GMT) |
Fix subclass links |
October 7, 2020, 18:21 (GMT) |
Fix class links |
October 7, 2020, 17:55 (GMT) |
Fix ops indent |
October 7, 2020, 17:15 (GMT) |
PyDoc: Fix 90% of sphinx-build warnings This is a second attempt at rB953c232db31f1a76f99ceb43119681ce0df1ab17 which got reverted Changes: - Document `bpy.ops.*` as classes and not modules (`bpy.ops`) is still a module. Changes here were also made to increase the indent to reduce the documentation scope (sphinx was complaining because to class functions were the same). - Remove `.. module:: bpy.types` from each bpy type page. Sphinx complains because there are multiple modules with the same name. Changes are are made here to document as a class. - Change the bpy data module from `.. module:: bpy` to`.. module:: bpy.data` These changes were tested to insure the urls and xrefs were the same (see rBaead4b3cab472b96fa0e07c289979c28f5fc22a5) Total errors went from 1263 to 120. The remaining errors regarding duplicate object descriptions are a bit harder to fix. Differential Revision: https://developer.blender.org/D9139 |