Cleanup: remove spaces from commented arguments

Also use local enums for `MA_BM_*` in versioning code.
This commit is contained in:
Campbell Barton
2023-09-22 12:02:32 +10:00
parent 867f99c2af
commit 5fbcb4c27e
64 changed files with 138 additions and 138 deletions

View File

@@ -3824,7 +3824,7 @@ PyTypeObject matrix_access_Type = {
/*tp_as_async*/ nullptr,
/*tp_repr*/ nullptr,
/*tp_as_number*/ nullptr,
/*tp_as_sequence*/ nullptr /* &MatrixAccess_SeqMethods */ /* TODO */,
/*tp_as_sequence*/ nullptr /* &MatrixAccess_SeqMethods */ /* TODO. */,
/*tp_as_mapping*/ &MatrixAccess_AsMapping,
/*tp_hash*/ nullptr,
/*tp_call*/ nullptr,
@@ -3836,7 +3836,7 @@ PyTypeObject matrix_access_Type = {
/*tp_doc*/ nullptr,
/*tp_traverse*/ (traverseproc)MatrixAccess_traverse,
/*tp_clear*/ (inquiry)MatrixAccess_clear,
/*tp_richcompare*/ nullptr /* MatrixAccess_richcmpr */ /* TODO */,
/*tp_richcompare*/ nullptr /* MatrixAccess_richcmpr */ /* TODO. */,
/*tp_weaklistoffset*/ 0,
/*tp_iter*/ (getiterfunc)MatrixAccess_iter,
/*tp_iternext*/ nullptr,