Cleanup: trailing commas

This commit is contained in:
2019-04-16 16:40:47 +02:00
parent d217b23f73
commit dbc058301b
119 changed files with 262 additions and 258 deletions

View File

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