Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-09-08 08:32:33 +0300
committerCampbell Barton <campbell@blender.org>2022-09-08 08:32:33 +0300
commita3ddcc6b4d11ae45ab3f55afefbfc57fb975d592 (patch)
tree58aa9489132dc798c17db7ca285eea93b97bd5c4 /source/blender/python/mathutils/mathutils.c
parent8a9d1f19ab1096b87e0da606c1ad623ac7bc0621 (diff)
Cleanup: correct PyModuleDef.m_slots reference
Changed in Python 3.5, match Python's internal name.
Diffstat (limited to 'source/blender/python/mathutils/mathutils.c')
-rw-r--r--source/blender/python/mathutils/mathutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils.c b/source/blender/python/mathutils/mathutils.c
index 1aa2cec861c..dcb6d7f3bc6 100644
--- a/source/blender/python/mathutils/mathutils.c
+++ b/source/blender/python/mathutils/mathutils.c
@@ -724,7 +724,7 @@ static struct PyModuleDef M_Mathutils_module_def = {
M_Mathutils_doc, /* m_doc */
0, /* m_size */
M_Mathutils_methods, /* m_methods */
- NULL, /* m_reload */
+ NULL, /* m_slots */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL, /* m_free */