Code clean-up: Py_TYPE(self)->tp_name instead of ((PyObject *)self)->ob_type->tp_name.
This commit is contained in:
@@ -200,7 +200,7 @@ PyDoc_STRVAR(Interface1D_name_doc,
|
||||
|
||||
static PyObject *Interface1D_name_get(BPy_Interface1D *self, void *UNUSED(closure))
|
||||
{
|
||||
return PyUnicode_FromString(((PyObject *)self)->ob_type->tp_name);
|
||||
return PyUnicode_FromString(Py_TYPE(self)->tp_name);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(Interface1D_id_doc,
|
||||
|
||||
Reference in New Issue
Block a user