Blender Git Commit Log
Git Commits -> Revision baa24f1
Revision baa24f1 by Aaron Carlisle (master) October 22, 2020, 21:22 (GMT) |
Pydoc: Fix sphinx compile warnings about freestyle Sphinx expects functions and methods with the same name and different parameters to be written using one directive. See: https://www.sphinx-doc.org/en/master/usage/restructuredtext/domains.html#basic-markup Unfortunately this makes giving different descriptions for each harder. This was already a request for better support for this in sphinx, see: https://github.com/sphinx-doc/sphinx/issues/7787 Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D9170 |
Commit Details:
Full Hash: baa24f1c91d21e10f51881f8fad012f30f99e26f
Parent Commit: 956af16
Lines Changed: +306, -541
35 Modified Paths:
/source/blender/freestyle/intern/python/BPy_FrsMaterial.cpp (+5, -12) (Diff)
/source/blender/freestyle/intern/python/BPy_Id.cpp (+15, -18) (Diff)
/source/blender/freestyle/intern/python/BPy_Operators.cpp (+58, -125) (Diff)
/source/blender/freestyle/intern/python/BPy_SShape.cpp (+12, -14) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp (+7, -17) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewShape.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp (+10, -22) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_SVertex.cpp (+5, -10) (Diff)
/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp (+9, -26) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_NonTVertex.cpp (+14, -16) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.cpp (+3, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp (+11, -17) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.cpp (+15, -17) (Diff)
/source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp (+4, -8) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.cpp (+46, -49) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainSilhouetteIterator.cpp (+2, -6) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.cpp (+3, -7) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.cpp (+3, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.cpp (+3, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_SVertexIterator.cpp (+27, -33) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ViewEdgeIterator.cpp (+2, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DDouble.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DFloat.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DUnsigned.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec3f.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVoid.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_Id.cpp (+15, -18) (Diff)
/source/blender/freestyle/intern/python/BPy_Operators.cpp (+58, -125) (Diff)
/source/blender/freestyle/intern/python/BPy_SShape.cpp (+12, -14) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp (+7, -17) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewShape.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp (+10, -22) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_SVertex.cpp (+5, -10) (Diff)
/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp (+9, -26) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_NonTVertex.cpp (+14, -16) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.cpp (+3, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp (+11, -17) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.cpp (+15, -17) (Diff)
/source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp (+4, -8) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.cpp (+46, -49) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainSilhouetteIterator.cpp (+2, -6) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.cpp (+4, -10) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.cpp (+3, -7) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.cpp (+3, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.cpp (+3, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_SVertexIterator.cpp (+27, -33) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ViewEdgeIterator.cpp (+2, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DDouble.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DFloat.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DUnsigned.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec3f.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.cpp (+3, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVoid.cpp (+3, -6) (Diff)