style cleanup: use c style comments in C code
This commit is contained in:
@@ -4267,7 +4267,7 @@ static int foreach_parse_args(BPy_PropertyRNA *self, PyObject *args,
|
||||
return -1;
|
||||
}
|
||||
|
||||
*tot = PySequence_Size(*seq); // TODO - buffer may not be a sequence! array.array() is tho.
|
||||
*tot = PySequence_Size(*seq); /* TODO - buffer may not be a sequence! array.array() is tho. */
|
||||
|
||||
if (*tot > 0) {
|
||||
foreach_attr_type(self, *attr, raw_type, attr_tot, attr_signed);
|
||||
|
@@ -2282,7 +2282,7 @@ static struct PyMethodDef Matrix_methods[] = {
|
||||
{"invert", (PyCFunction) Matrix_invert, METH_NOARGS, Matrix_invert_doc},
|
||||
{"inverted", (PyCFunction) Matrix_inverted, METH_NOARGS, Matrix_inverted_doc},
|
||||
{"to_3x3", (PyCFunction) Matrix_to_3x3, METH_NOARGS, Matrix_to_3x3_doc},
|
||||
// TODO. {"resize_3x3", (PyCFunction) Matrix_resize3x3, METH_NOARGS, Matrix_resize3x3_doc},
|
||||
/* TODO. {"resize_3x3", (PyCFunction) Matrix_resize3x3, METH_NOARGS, Matrix_resize3x3_doc}, */
|
||||
{"to_4x4", (PyCFunction) Matrix_to_4x4, METH_NOARGS, Matrix_to_4x4_doc},
|
||||
{"resize_4x4", (PyCFunction) Matrix_resize_4x4, METH_NOARGS, Matrix_resize_4x4_doc},
|
||||
{"rotate", (PyCFunction) Matrix_rotate, METH_O, Matrix_rotate_doc},
|
||||
|
Reference in New Issue
Block a user