Cleanup: clang-tidy suppress warnings for PyTypeObject.tp_print
Clang-tidy behavior changes from Python 3.7 to 3.8+ so it's simplest to suppress the warning in this instance.
This commit is contained in:
		@@ -80,6 +80,8 @@ PyTypeObject BBox_Type = {
 | 
			
		||||
    sizeof(BPy_BBox),                         /* tp_basicsize */
 | 
			
		||||
    0,                                        /* tp_itemsize */
 | 
			
		||||
    (destructor)BBox_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                        /* tp_print */
 | 
			
		||||
    nullptr,                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -153,6 +153,8 @@ PyTypeObject BinaryPredicate0D_Type = {
 | 
			
		||||
    sizeof(BPy_BinaryPredicate0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                     /* tp_itemsize */
 | 
			
		||||
    (destructor)BinaryPredicate0D___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                     /* tp_print */
 | 
			
		||||
    nullptr,                                               /* tp_getattr */
 | 
			
		||||
    nullptr,                                               /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -187,6 +187,8 @@ PyTypeObject BinaryPredicate1D_Type = {
 | 
			
		||||
    sizeof(BPy_BinaryPredicate1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                     /* tp_itemsize */
 | 
			
		||||
    (destructor)BinaryPredicate1D___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                     /* tp_print */
 | 
			
		||||
    nullptr,                                               /* tp_getattr */
 | 
			
		||||
    nullptr,                                               /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -538,6 +538,8 @@ PyTypeObject FrsMaterial_Type = {
 | 
			
		||||
    sizeof(BPy_FrsMaterial),                      /* tp_basicsize */
 | 
			
		||||
    0,                                            /* tp_itemsize */
 | 
			
		||||
    (destructor)FrsMaterial_dealloc,              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                            /* tp_print */
 | 
			
		||||
    nullptr,                                      /* tp_getattr */
 | 
			
		||||
    nullptr,                                      /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -330,6 +330,8 @@ PyTypeObject FrsNoise_Type = {
 | 
			
		||||
    sizeof(BPy_FrsNoise),                      /* tp_basicsize */
 | 
			
		||||
    0,                                         /* tp_itemsize */
 | 
			
		||||
    (destructor)FrsNoise_dealloc,              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                         /* tp_print */
 | 
			
		||||
    nullptr,                                   /* tp_getattr */
 | 
			
		||||
    nullptr,                                   /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -171,6 +171,8 @@ PyTypeObject Id_Type = {
 | 
			
		||||
    sizeof(BPy_Id),                           /* tp_basicsize */
 | 
			
		||||
    0,                                        /* tp_itemsize */
 | 
			
		||||
    (destructor)Id_dealloc,                   /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                        /* tp_print */
 | 
			
		||||
    nullptr,                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -153,6 +153,8 @@ PyTypeObject IntegrationType_Type = {
 | 
			
		||||
    sizeof(PyLongObject),                                /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    nullptr,                                             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -313,6 +313,8 @@ PyTypeObject Interface0D_Type = {
 | 
			
		||||
    sizeof(BPy_Interface0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                               /* tp_itemsize */
 | 
			
		||||
    (destructor)Interface0D_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                               /* tp_print */
 | 
			
		||||
    nullptr,                                         /* tp_getattr */
 | 
			
		||||
    nullptr,                                         /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -341,6 +341,8 @@ PyTypeObject Interface1D_Type = {
 | 
			
		||||
    sizeof(BPy_Interface1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                               /* tp_itemsize */
 | 
			
		||||
    (destructor)Interface1D_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                               /* tp_print */
 | 
			
		||||
    nullptr,                                         /* tp_getattr */
 | 
			
		||||
    nullptr,                                         /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -228,6 +228,8 @@ PyTypeObject Iterator_Type = {
 | 
			
		||||
    sizeof(BPy_Iterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                            /* tp_itemsize */
 | 
			
		||||
    (destructor)Iterator_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                            /* tp_print */
 | 
			
		||||
    nullptr,                                      /* tp_getattr */
 | 
			
		||||
    nullptr,                                      /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -45,6 +45,8 @@ PyTypeObject MediumType_Type = {
 | 
			
		||||
    sizeof(PyLongObject),                           /* tp_basicsize */
 | 
			
		||||
    0,                                              /* tp_itemsize */
 | 
			
		||||
    nullptr,                                        /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                              /* tp_print */
 | 
			
		||||
    nullptr,                                        /* tp_getattr */
 | 
			
		||||
    nullptr,                                        /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -107,6 +107,8 @@ PyTypeObject Nature_Type = {
 | 
			
		||||
    sizeof(PyLongObject),                       /* tp_basicsize */
 | 
			
		||||
    0,                                          /* tp_itemsize */
 | 
			
		||||
    nullptr,                                    /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                          /* tp_print */
 | 
			
		||||
    nullptr,                                    /* tp_getattr */
 | 
			
		||||
    nullptr,                                    /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -770,6 +770,8 @@ PyTypeObject Operators_Type = {
 | 
			
		||||
    sizeof(BPy_Operators),                         /* tp_basicsize */
 | 
			
		||||
    0,                                             /* tp_itemsize */
 | 
			
		||||
    (destructor)Operators_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                             /* tp_print */
 | 
			
		||||
    nullptr,                                       /* tp_getattr */
 | 
			
		||||
    nullptr,                                       /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -281,6 +281,8 @@ PyTypeObject SShape_Type = {
 | 
			
		||||
    sizeof(BPy_SShape),                         /* tp_basicsize */
 | 
			
		||||
    0,                                          /* tp_itemsize */
 | 
			
		||||
    (destructor)SShape_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                          /* tp_print */
 | 
			
		||||
    nullptr,                                    /* tp_getattr */
 | 
			
		||||
    nullptr,                                    /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -677,6 +677,8 @@ PyTypeObject StrokeAttribute_Type = {
 | 
			
		||||
    sizeof(BPy_StrokeAttribute),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    (destructor)StrokeAttribute_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -282,6 +282,8 @@ PyTypeObject StrokeShader_Type = {
 | 
			
		||||
    sizeof(BPy_StrokeShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                /* tp_itemsize */
 | 
			
		||||
    (destructor)StrokeShader___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                /* tp_print */
 | 
			
		||||
    nullptr,                                          /* tp_getattr */
 | 
			
		||||
    nullptr,                                          /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -124,6 +124,8 @@ PyTypeObject UnaryFunction0D_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0D___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -118,6 +118,8 @@ PyTypeObject UnaryFunction1D_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction1D___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -167,6 +167,8 @@ PyTypeObject UnaryPredicate0D_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryPredicate0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryPredicate0D___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -225,6 +225,8 @@ PyTypeObject UnaryPredicate1D_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryPredicate1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryPredicate1D___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -184,6 +184,8 @@ PyTypeObject ViewMap_Type = {
 | 
			
		||||
    sizeof(BPy_ViewMap),                         /* tp_basicsize */
 | 
			
		||||
    0,                                           /* tp_itemsize */
 | 
			
		||||
    (destructor)ViewMap_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                           /* tp_print */
 | 
			
		||||
    nullptr,                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -352,6 +352,8 @@ PyTypeObject ViewShape_Type = {
 | 
			
		||||
    sizeof(BPy_ViewShape),                         /* tp_basicsize */
 | 
			
		||||
    0,                                             /* tp_itemsize */
 | 
			
		||||
    (destructor)ViewShape_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                             /* tp_print */
 | 
			
		||||
    nullptr,                                       /* tp_getattr */
 | 
			
		||||
    nullptr,                                       /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -59,6 +59,8 @@ PyTypeObject FalseBP1D_Type = {
 | 
			
		||||
    sizeof(BPy_FalseBP1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                             /* tp_itemsize */
 | 
			
		||||
    nullptr,                                       /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                             /* tp_print */
 | 
			
		||||
    nullptr,                                       /* tp_getattr */
 | 
			
		||||
    nullptr,                                       /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -61,6 +61,8 @@ PyTypeObject Length2DBP1D_Type = {
 | 
			
		||||
    sizeof(BPy_Length2DBP1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                /* tp_itemsize */
 | 
			
		||||
    nullptr,                                          /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                /* tp_print */
 | 
			
		||||
    nullptr,                                          /* tp_getattr */
 | 
			
		||||
    nullptr,                                          /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -60,6 +60,8 @@ PyTypeObject SameShapeIdBP1D_Type = {
 | 
			
		||||
    sizeof(BPy_SameShapeIdBP1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    nullptr,                                             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -60,6 +60,8 @@ PyTypeObject TrueBP1D_Type = {
 | 
			
		||||
    sizeof(BPy_TrueBP1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                            /* tp_itemsize */
 | 
			
		||||
    nullptr,                                      /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                            /* tp_print */
 | 
			
		||||
    nullptr,                                      /* tp_getattr */
 | 
			
		||||
    nullptr,                                      /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -90,6 +90,8 @@ PyTypeObject ViewMapGradientNormBP1D_Type = {
 | 
			
		||||
    sizeof(BPy_ViewMapGradientNormBP1D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                           /* tp_print */
 | 
			
		||||
    nullptr,                                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -242,6 +242,8 @@ PyTypeObject CurvePoint_Type = {
 | 
			
		||||
    sizeof(BPy_CurvePoint),                         /* tp_basicsize */
 | 
			
		||||
    0,                                              /* tp_itemsize */
 | 
			
		||||
    nullptr,                                        /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                              /* tp_print */
 | 
			
		||||
    nullptr,                                        /* tp_getattr */
 | 
			
		||||
    nullptr,                                        /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -455,6 +455,8 @@ PyTypeObject SVertex_Type = {
 | 
			
		||||
    sizeof(BPy_SVertex),                         /* tp_basicsize */
 | 
			
		||||
    0,                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                           /* tp_print */
 | 
			
		||||
    nullptr,                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -164,6 +164,8 @@ PyTypeObject ViewVertex_Type = {
 | 
			
		||||
    sizeof(BPy_ViewVertex),                         /* tp_basicsize */
 | 
			
		||||
    0,                                              /* tp_itemsize */
 | 
			
		||||
    nullptr,                                        /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                              /* tp_print */
 | 
			
		||||
    nullptr,                                        /* tp_getattr */
 | 
			
		||||
    nullptr,                                        /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -361,6 +361,8 @@ PyTypeObject StrokeVertex_Type = {
 | 
			
		||||
    sizeof(BPy_StrokeVertex),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                /* tp_itemsize */
 | 
			
		||||
    nullptr,                                          /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                /* tp_print */
 | 
			
		||||
    nullptr,                                          /* tp_getattr */
 | 
			
		||||
    nullptr,                                          /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -109,6 +109,8 @@ PyTypeObject NonTVertex_Type = {
 | 
			
		||||
    sizeof(BPy_NonTVertex),                         /* tp_basicsize */
 | 
			
		||||
    0,                                              /* tp_itemsize */
 | 
			
		||||
    nullptr,                                        /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                              /* tp_print */
 | 
			
		||||
    nullptr,                                        /* tp_getattr */
 | 
			
		||||
    nullptr,                                        /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -219,6 +219,8 @@ PyTypeObject TVertex_Type = {
 | 
			
		||||
    sizeof(BPy_TVertex),                         /* tp_basicsize */
 | 
			
		||||
    0,                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                           /* tp_print */
 | 
			
		||||
    nullptr,                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -358,6 +358,8 @@ PyTypeObject FEdge_Type = {
 | 
			
		||||
    sizeof(BPy_FEdge),                         /* tp_basicsize */
 | 
			
		||||
    0,                                         /* tp_itemsize */
 | 
			
		||||
    nullptr,                                   /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                         /* tp_print */
 | 
			
		||||
    nullptr,                                   /* tp_getattr */
 | 
			
		||||
    nullptr,                                   /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -190,6 +190,8 @@ PyTypeObject FrsCurve_Type = {
 | 
			
		||||
    sizeof(BPy_FrsCurve),                      /* tp_basicsize */
 | 
			
		||||
    0,                                         /* tp_itemsize */
 | 
			
		||||
    nullptr,                                   /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                         /* tp_print */
 | 
			
		||||
    nullptr,                                   /* tp_getattr */
 | 
			
		||||
    nullptr,                                   /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -501,6 +501,8 @@ PyTypeObject Stroke_Type = {
 | 
			
		||||
    sizeof(BPy_Stroke),                         /* tp_basicsize */
 | 
			
		||||
    0,                                          /* tp_itemsize */
 | 
			
		||||
    nullptr,                                    /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                          /* tp_print */
 | 
			
		||||
    nullptr,                                    /* tp_getattr */
 | 
			
		||||
    nullptr,                                    /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -386,6 +386,8 @@ PyTypeObject ViewEdge_Type = {
 | 
			
		||||
    sizeof(BPy_ViewEdge),                         /* tp_basicsize */
 | 
			
		||||
    0,                                            /* tp_itemsize */
 | 
			
		||||
    nullptr,                                      /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                            /* tp_print */
 | 
			
		||||
    nullptr,                                      /* tp_getattr */
 | 
			
		||||
    nullptr,                                      /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -150,6 +150,8 @@ PyTypeObject Chain_Type = {
 | 
			
		||||
    sizeof(BPy_Chain),                         /* tp_basicsize */
 | 
			
		||||
    0,                                         /* tp_itemsize */
 | 
			
		||||
    nullptr,                                   /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                         /* tp_print */
 | 
			
		||||
    nullptr,                                   /* tp_getattr */
 | 
			
		||||
    nullptr,                                   /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -408,6 +408,8 @@ PyTypeObject FEdgeSharp_Type = {
 | 
			
		||||
    sizeof(BPy_FEdgeSharp),                         /* tp_basicsize */
 | 
			
		||||
    0,                                              /* tp_itemsize */
 | 
			
		||||
    nullptr,                                        /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                              /* tp_print */
 | 
			
		||||
    nullptr,                                        /* tp_getattr */
 | 
			
		||||
    nullptr,                                        /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -253,6 +253,8 @@ PyTypeObject FEdgeSmooth_Type = {
 | 
			
		||||
    sizeof(BPy_FEdgeSmooth),                         /* tp_basicsize */
 | 
			
		||||
    0,                                               /* tp_itemsize */
 | 
			
		||||
    nullptr,                                         /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                               /* tp_print */
 | 
			
		||||
    nullptr,                                         /* tp_getattr */
 | 
			
		||||
    nullptr,                                         /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -186,6 +186,8 @@ PyTypeObject AdjacencyIterator_Type = {
 | 
			
		||||
    sizeof(BPy_AdjacencyIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                     /* tp_itemsize */
 | 
			
		||||
    nullptr,                                               /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                     /* tp_print */
 | 
			
		||||
    nullptr,                                               /* tp_getattr */
 | 
			
		||||
    nullptr,                                               /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -167,6 +167,8 @@ PyTypeObject ChainPredicateIterator_Type = {
 | 
			
		||||
    sizeof(BPy_ChainPredicateIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                          /* tp_itemsize */
 | 
			
		||||
    (destructor)ChainPredicateIterator_dealloc,                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                          /* tp_print */
 | 
			
		||||
    nullptr,                                                    /* tp_getattr */
 | 
			
		||||
    nullptr,                                                    /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -121,6 +121,8 @@ PyTypeObject ChainSilhouetteIterator_Type = {
 | 
			
		||||
    sizeof(BPy_ChainSilhouetteIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                           /* tp_print */
 | 
			
		||||
    nullptr,                                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -255,6 +255,8 @@ PyTypeObject ChainingIterator_Type = {
 | 
			
		||||
    sizeof(BPy_ChainingIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    nullptr,                                              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -135,6 +135,8 @@ PyTypeObject CurvePointIterator_Type = {
 | 
			
		||||
    sizeof(BPy_CurvePointIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                      /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                      /* tp_print */
 | 
			
		||||
    nullptr,                                                /* tp_getattr */
 | 
			
		||||
    nullptr,                                                /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -210,6 +210,8 @@ PyTypeObject Interface0DIterator_Type = {
 | 
			
		||||
    sizeof(BPy_Interface0DIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                       /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                       /* tp_print */
 | 
			
		||||
    nullptr,                                                 /* tp_getattr */
 | 
			
		||||
    nullptr,                                                 /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -162,6 +162,8 @@ PyTypeObject SVertexIterator_Type = {
 | 
			
		||||
    sizeof(BPy_SVertexIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    nullptr,                                             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -293,6 +293,8 @@ PyTypeObject StrokeVertexIterator_Type = {
 | 
			
		||||
    sizeof(BPy_StrokeVertexIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                        /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                  /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -240,6 +240,8 @@ PyTypeObject ViewEdgeIterator_Type = {
 | 
			
		||||
    sizeof(BPy_ViewEdgeIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    nullptr,                                              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -144,6 +144,8 @@ PyTypeObject orientedViewEdgeIterator_Type = {
 | 
			
		||||
    sizeof(BPy_orientedViewEdgeIterator),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                            /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                      /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                            /* tp_print */
 | 
			
		||||
    nullptr,                                                      /* tp_getattr */
 | 
			
		||||
    nullptr,                                                      /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -71,6 +71,8 @@ PyTypeObject BackboneStretcherShader_Type = {
 | 
			
		||||
    sizeof(BPy_BackboneStretcherShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                           /* tp_print */
 | 
			
		||||
    nullptr,                                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -71,6 +71,8 @@ PyTypeObject BezierCurveShader_Type = {
 | 
			
		||||
    sizeof(BPy_BezierCurveShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                     /* tp_itemsize */
 | 
			
		||||
    nullptr,                                               /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                     /* tp_print */
 | 
			
		||||
    nullptr,                                               /* tp_getattr */
 | 
			
		||||
    nullptr,                                               /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -91,6 +91,8 @@ PyTypeObject BlenderTextureShader_Type = {
 | 
			
		||||
    sizeof(BPy_BlenderTextureShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                        /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                  /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -89,6 +89,8 @@ PyTypeObject CalligraphicShader_Type = {
 | 
			
		||||
    sizeof(BPy_CalligraphicShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                      /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                      /* tp_print */
 | 
			
		||||
    nullptr,                                                /* tp_getattr */
 | 
			
		||||
    nullptr,                                                /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -70,6 +70,8 @@ PyTypeObject ColorNoiseShader_Type = {
 | 
			
		||||
    sizeof(BPy_ColorNoiseShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    nullptr,                                              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -76,6 +76,8 @@ PyTypeObject ConstantColorShader_Type = {
 | 
			
		||||
    sizeof(BPy_ConstantColorShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                       /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                       /* tp_print */
 | 
			
		||||
    nullptr,                                                 /* tp_getattr */
 | 
			
		||||
    nullptr,                                                 /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -70,6 +70,8 @@ PyTypeObject ConstantThicknessShader_Type = {
 | 
			
		||||
    sizeof(BPy_ConstantThicknessShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                           /* tp_print */
 | 
			
		||||
    nullptr,                                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -76,6 +76,8 @@ PyTypeObject ConstrainedIncreasingThicknessShader_Type = {
 | 
			
		||||
    sizeof(BPy_ConstrainedIncreasingThicknessShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                                        /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                                  /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -78,6 +78,8 @@ PyTypeObject GuidingLinesShader_Type = {
 | 
			
		||||
    sizeof(BPy_GuidingLinesShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                      /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                      /* tp_print */
 | 
			
		||||
    nullptr,                                                /* tp_getattr */
 | 
			
		||||
    nullptr,                                                /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -98,6 +98,8 @@ PyTypeObject IncreasingColorShader_Type = {
 | 
			
		||||
    sizeof(BPy_IncreasingColorShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                         /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                   /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                         /* tp_print */
 | 
			
		||||
    nullptr,                                                   /* tp_getattr */
 | 
			
		||||
    nullptr,                                                   /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -76,6 +76,8 @@ PyTypeObject IncreasingThicknessShader_Type = {
 | 
			
		||||
    sizeof(BPy_IncreasingThicknessShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                             /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                       /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                             /* tp_print */
 | 
			
		||||
    nullptr,                                                       /* tp_getattr */
 | 
			
		||||
    nullptr,                                                       /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -77,6 +77,8 @@ PyTypeObject PolygonalizationShader_Type = {
 | 
			
		||||
    sizeof(BPy_PolygonalizationShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                          /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                    /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                          /* tp_print */
 | 
			
		||||
    nullptr,                                                    /* tp_getattr */
 | 
			
		||||
    nullptr,                                                    /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -68,6 +68,8 @@ PyTypeObject SamplingShader_Type = {
 | 
			
		||||
    sizeof(BPy_SamplingShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                  /* tp_itemsize */
 | 
			
		||||
    nullptr,                                            /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                  /* tp_print */
 | 
			
		||||
    nullptr,                                            /* tp_getattr */
 | 
			
		||||
    nullptr,                                            /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -100,6 +100,8 @@ PyTypeObject SmoothingShader_Type = {
 | 
			
		||||
    sizeof(BPy_SmoothingShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    nullptr,                                             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -94,6 +94,8 @@ PyTypeObject SpatialNoiseShader_Type = {
 | 
			
		||||
    sizeof(BPy_SpatialNoiseShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                      /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                      /* tp_print */
 | 
			
		||||
    nullptr,                                                /* tp_getattr */
 | 
			
		||||
    nullptr,                                                /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -70,6 +70,8 @@ PyTypeObject StrokeTextureStepShader_Type = {
 | 
			
		||||
    sizeof(BPy_StrokeTextureStepShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                           /* tp_print */
 | 
			
		||||
    nullptr,                                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -72,6 +72,8 @@ PyTypeObject ThicknessNoiseShader_Type = {
 | 
			
		||||
    sizeof(BPy_ThicknessNoiseShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                        /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                  /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -69,6 +69,8 @@ PyTypeObject TipRemoverShader_Type = {
 | 
			
		||||
    sizeof(BPy_TipRemoverShader),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    nullptr,                                              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -187,6 +187,8 @@ PyTypeObject UnaryFunction0DDouble_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DDouble),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                         /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DDouble___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                         /* tp_print */
 | 
			
		||||
    nullptr,                                                   /* tp_getattr */
 | 
			
		||||
    nullptr,                                                   /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -126,6 +126,8 @@ PyTypeObject UnaryFunction0DEdgeNature_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DEdgeNature),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                             /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DEdgeNature___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                             /* tp_print */
 | 
			
		||||
    nullptr,                                                       /* tp_getattr */
 | 
			
		||||
    nullptr,                                                       /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -163,6 +163,8 @@ PyTypeObject UnaryFunction0DFloat_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DFloat),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                        /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DFloat___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -122,6 +122,8 @@ PyTypeObject UnaryFunction0DId_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DId),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                     /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DId___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                     /* tp_print */
 | 
			
		||||
    nullptr,                                               /* tp_getattr */
 | 
			
		||||
    nullptr,                                               /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -125,6 +125,8 @@ PyTypeObject UnaryFunction0DMaterial_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DMaterial),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                           /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DMaterial___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                           /* tp_print */
 | 
			
		||||
    nullptr,                                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -126,6 +126,8 @@ PyTypeObject UnaryFunction0DUnsigned_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DUnsigned),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                           /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DUnsigned___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                           /* tp_print */
 | 
			
		||||
    nullptr,                                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -131,6 +131,8 @@ PyTypeObject UnaryFunction0DVec2f_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DVec2f),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                        /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DVec2f___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -124,6 +124,8 @@ PyTypeObject UnaryFunction0DVec3f_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DVec3f),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                        /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DVec3f___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -135,6 +135,8 @@ PyTypeObject UnaryFunction0DVectorViewShape_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DVectorViewShape),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                                  /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DVectorViewShape___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                                  /* tp_print */
 | 
			
		||||
    nullptr,                                                            /* tp_getattr */
 | 
			
		||||
    nullptr,                                                            /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -133,6 +133,8 @@ PyTypeObject UnaryFunction0DViewShape_Type = {
 | 
			
		||||
    sizeof(BPy_UnaryFunction0DViewShape),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                            /* tp_itemsize */
 | 
			
		||||
    (destructor)UnaryFunction0DViewShape___dealloc__,             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                            /* tp_print */
 | 
			
		||||
    nullptr,                                                      /* tp_getattr */
 | 
			
		||||
    nullptr,                                                      /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -74,6 +74,8 @@ PyTypeObject ShapeIdF0D_Type = {
 | 
			
		||||
    sizeof(BPy_ShapeIdF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                              /* tp_itemsize */
 | 
			
		||||
    nullptr,                                        /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                              /* tp_print */
 | 
			
		||||
    nullptr,                                        /* tp_getattr */
 | 
			
		||||
    nullptr,                                        /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -77,6 +77,8 @@ PyTypeObject MaterialF0D_Type = {
 | 
			
		||||
    sizeof(BPy_MaterialF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                               /* tp_itemsize */
 | 
			
		||||
    nullptr,                                         /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                               /* tp_print */
 | 
			
		||||
    nullptr,                                         /* tp_getattr */
 | 
			
		||||
    nullptr,                                         /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -68,6 +68,8 @@ PyTypeObject CurveNatureF0D_Type = {
 | 
			
		||||
    sizeof(BPy_CurveNatureF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                  /* tp_itemsize */
 | 
			
		||||
    nullptr,                                            /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                  /* tp_print */
 | 
			
		||||
    nullptr,                                            /* tp_getattr */
 | 
			
		||||
    nullptr,                                            /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -70,6 +70,8 @@ PyTypeObject Normal2DF0D_Type = {
 | 
			
		||||
    sizeof(BPy_Normal2DF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                               /* tp_itemsize */
 | 
			
		||||
    nullptr,                                         /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                               /* tp_print */
 | 
			
		||||
    nullptr,                                         /* tp_getattr */
 | 
			
		||||
    nullptr,                                         /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -72,6 +72,8 @@ PyTypeObject VertexOrientation2DF0D_Type = {
 | 
			
		||||
    sizeof(BPy_VertexOrientation2DF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                          /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                    /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                          /* tp_print */
 | 
			
		||||
    nullptr,                                                    /* tp_getattr */
 | 
			
		||||
    nullptr,                                                    /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -72,6 +72,8 @@ PyTypeObject VertexOrientation3DF0D_Type = {
 | 
			
		||||
    sizeof(BPy_VertexOrientation3DF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                          /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                    /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                          /* tp_print */
 | 
			
		||||
    nullptr,                                                    /* tp_getattr */
 | 
			
		||||
    nullptr,                                                    /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetOccludeeF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetOccludeeF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                  /* tp_itemsize */
 | 
			
		||||
    nullptr,                                            /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                  /* tp_print */
 | 
			
		||||
    nullptr,                                            /* tp_getattr */
 | 
			
		||||
    nullptr,                                            /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetShapeF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetShapeF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                               /* tp_itemsize */
 | 
			
		||||
    nullptr,                                         /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                               /* tp_print */
 | 
			
		||||
    nullptr,                                         /* tp_getattr */
 | 
			
		||||
    nullptr,                                         /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -72,6 +72,8 @@ PyTypeObject Curvature2DAngleF0D_Type = {
 | 
			
		||||
    sizeof(BPy_Curvature2DAngleF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                       /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                 /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                       /* tp_print */
 | 
			
		||||
    nullptr,                                                 /* tp_getattr */
 | 
			
		||||
    nullptr,                                                 /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -77,6 +77,8 @@ PyTypeObject DensityF0D_Type = {
 | 
			
		||||
    sizeof(BPy_DensityF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                              /* tp_itemsize */
 | 
			
		||||
    nullptr,                                        /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                              /* tp_print */
 | 
			
		||||
    nullptr,                                        /* tp_getattr */
 | 
			
		||||
    nullptr,                                        /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetProjectedXF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetProjectedXF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    nullptr,                                              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetProjectedYF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetProjectedYF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    nullptr,                                              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetProjectedZF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetProjectedZF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                    /* tp_itemsize */
 | 
			
		||||
    nullptr,                                              /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                    /* tp_print */
 | 
			
		||||
    nullptr,                                              /* tp_getattr */
 | 
			
		||||
    nullptr,                                              /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetXF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetXF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                           /* tp_print */
 | 
			
		||||
    nullptr,                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetYF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetYF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                           /* tp_print */
 | 
			
		||||
    nullptr,                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -67,6 +67,8 @@ PyTypeObject GetZF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetZF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                           /* tp_itemsize */
 | 
			
		||||
    nullptr,                                     /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                           /* tp_print */
 | 
			
		||||
    nullptr,                                     /* tp_getattr */
 | 
			
		||||
    nullptr,                                     /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -75,6 +75,8 @@ PyTypeObject LocalAverageDepthF0D_Type = {
 | 
			
		||||
    sizeof(BPy_LocalAverageDepthF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                        /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                  /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                        /* tp_print */
 | 
			
		||||
    nullptr,                                                  /* tp_getattr */
 | 
			
		||||
    nullptr,                                                  /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -72,6 +72,8 @@ PyTypeObject ZDiscontinuityF0D_Type = {
 | 
			
		||||
    sizeof(BPy_ZDiscontinuityF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                     /* tp_itemsize */
 | 
			
		||||
    nullptr,                                               /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                     /* tp_print */
 | 
			
		||||
    nullptr,                                               /* tp_getattr */
 | 
			
		||||
    nullptr,                                               /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -70,6 +70,8 @@ PyTypeObject GetCurvilinearAbscissaF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetCurvilinearAbscissaF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                             /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                       /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                             /* tp_print */
 | 
			
		||||
    nullptr,                                                       /* tp_getattr */
 | 
			
		||||
    nullptr,                                                       /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -66,6 +66,8 @@ PyTypeObject GetParameterF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetParameterF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                   /* tp_itemsize */
 | 
			
		||||
    nullptr,                                             /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                   /* tp_print */
 | 
			
		||||
    nullptr,                                             /* tp_getattr */
 | 
			
		||||
    nullptr,                                             /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -75,6 +75,8 @@ PyTypeObject GetViewMapGradientNormF0D_Type = {
 | 
			
		||||
    sizeof(BPy_GetViewMapGradientNormF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                             /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                       /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                             /* tp_print */
 | 
			
		||||
    nullptr,                                                       /* tp_getattr */
 | 
			
		||||
    nullptr,                                                       /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
@@ -73,6 +73,8 @@ PyTypeObject ReadCompleteViewMapPixelF0D_Type = {
 | 
			
		||||
    sizeof(BPy_ReadCompleteViewMapPixelF0D),                         /* tp_basicsize */
 | 
			
		||||
    0,                                                               /* tp_itemsize */
 | 
			
		||||
    nullptr,                                                         /* tp_dealloc */
 | 
			
		||||
    /* Incompatible with Python3.8+ (deprecated function).
 | 
			
		||||
     * NOLINTNEXTLINE: modernize-use-nullptr. */
 | 
			
		||||
    0,                                                               /* tp_print */
 | 
			
		||||
    nullptr,                                                         /* tp_getattr */
 | 
			
		||||
    nullptr,                                                         /* tp_setattr */
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user