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:
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/bmesh/bmesh_py_types.h4
-rw-r--r--source/blender/python/generic/bgl.c2
-rw-r--r--source/blender/python/mathutils/mathutils_Color.c2
-rw-r--r--source/blender/python/mathutils/mathutils_Euler.c2
-rw-r--r--source/blender/python/mathutils/mathutils_Matrix.c4
-rw-r--r--source/blender/python/mathutils/mathutils_bvhtree.c4
-rw-r--r--source/blender/python/mathutils/mathutils_kdtree.c4
7 files changed, 11 insertions, 11 deletions
diff --git a/source/blender/python/bmesh/bmesh_py_types.h b/source/blender/python/bmesh/bmesh_py_types.h
index deabbef1b7b..80646b7eb16 100644
--- a/source/blender/python/bmesh/bmesh_py_types.h
+++ b/source/blender/python/bmesh/bmesh_py_types.h
@@ -134,8 +134,8 @@ void BPy_BM_init_types(void);
PyObject *BPyInit_bmesh_types(void);
enum {
- BPY_BMFLAG_NOP = 0, /* do nothing */
- BPY_BMFLAG_IS_WRAPPED = 1 /* the mesh is owned by editmode */
+ BPY_BMFLAG_NOP = 0, /* do nothing */
+ BPY_BMFLAG_IS_WRAPPED = 1, /* the mesh is owned by editmode */
};
PyObject *BPy_BMesh_CreatePyObject(BMesh *bm, int flag);
diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c
index b52326ed7a4..c089a2d03c2 100644
--- a/source/blender/python/generic/bgl.c
+++ b/source/blender/python/generic/bgl.c
@@ -664,7 +664,7 @@ PyTypeObject BGL_bufferType = {
NULL, /*tp_cache*/
NULL, /*tp_subclasses*/
NULL, /*tp_weaklist*/
- NULL /*tp_del*/
+ NULL, /*tp_del*/
};
diff --git a/source/blender/python/mathutils/mathutils_Color.c b/source/blender/python/mathutils/mathutils_Color.c
index c97d2720720..98e85782989 100644
--- a/source/blender/python/mathutils/mathutils_Color.c
+++ b/source/blender/python/mathutils/mathutils_Color.c
@@ -932,7 +932,7 @@ PyTypeObject color_Type = {
NULL, /* tp_cache */
NULL, /* tp_subclasses */
NULL, /* tp_weaklist */
- NULL /* tp_del */
+ NULL, /* tp_del */
};
PyObject *Color_CreatePyObject(
diff --git a/source/blender/python/mathutils/mathutils_Euler.c b/source/blender/python/mathutils/mathutils_Euler.c
index e928049644b..4177fc489bb 100644
--- a/source/blender/python/mathutils/mathutils_Euler.c
+++ b/source/blender/python/mathutils/mathutils_Euler.c
@@ -784,7 +784,7 @@ PyTypeObject euler_Type = {
NULL, /* tp_cache */
NULL, /* tp_subclasses */
NULL, /* tp_weaklist */
- NULL /* tp_del */
+ NULL, /* tp_del */
};
diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c
index 6477493d4a6..724fcd263d4 100644
--- a/source/blender/python/mathutils/mathutils_Matrix.c
+++ b/source/blender/python/mathutils/mathutils_Matrix.c
@@ -36,7 +36,7 @@
typedef enum eMatrixAccess_t {
MAT_ACCESS_ROW,
- MAT_ACCESS_COL
+ MAT_ACCESS_COL,
} eMatrixAccess_t;
static PyObject *Matrix_copy_notest(MatrixObject *self, const float *matrix);
@@ -3078,7 +3078,7 @@ PyTypeObject matrix_Type = {
NULL, /*tp_cache*/
NULL, /*tp_subclasses*/
NULL, /*tp_weaklist*/
- NULL /*tp_del*/
+ NULL, /*tp_del*/
};
PyObject *Matrix_CreatePyObject(
diff --git a/source/blender/python/mathutils/mathutils_bvhtree.c b/source/blender/python/mathutils/mathutils_bvhtree.c
index b99b39ac998..b1420f316e6 100644
--- a/source/blender/python/mathutils/mathutils_bvhtree.c
+++ b/source/blender/python/mathutils/mathutils_bvhtree.c
@@ -1295,7 +1295,7 @@ PyTypeObject PyBVHTree_Type = {
NULL, /* tp_cache */
NULL, /* tp_subclasses */
NULL, /* tp_weaklist */
- (destructor) NULL /* tp_del */
+ (destructor)NULL, /* tp_del */
};
/* -------------------------------------------------------------------- */
@@ -1313,7 +1313,7 @@ static struct PyModuleDef bvhtree_moduledef = {
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
- NULL /* m_free */
+ NULL, /* m_free */
};
PyMODINIT_FUNC PyInit_mathutils_bvhtree(void)
diff --git a/source/blender/python/mathutils/mathutils_kdtree.c b/source/blender/python/mathutils/mathutils_kdtree.c
index 7228ac41bd6..b1cda85f6ea 100644
--- a/source/blender/python/mathutils/mathutils_kdtree.c
+++ b/source/blender/python/mathutils/mathutils_kdtree.c
@@ -453,7 +453,7 @@ PyTypeObject PyKDTree_Type = {
NULL, /* tp_cache */
NULL, /* tp_subclasses */
NULL, /* tp_weaklist */
- (destructor) NULL /* tp_del */
+ (destructor)NULL, /* tp_del */
};
PyDoc_STRVAR(py_kdtree_doc,
@@ -468,7 +468,7 @@ static struct PyModuleDef kdtree_moduledef = {
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
- NULL /* m_free */
+ NULL, /* m_free */
};
PyMODINIT_FUNC PyInit_mathutils_kdtree(void)