Skip to content

Commit

Permalink
use PIL.ImageCms.core as module for PIL._imagingcms classes
Browse files Browse the repository at this point in the history
  • Loading branch information
nulano committed Mar 28, 2024
1 parent 0015e9c commit abb73b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/_imagingcms.c
Original file line number Diff line number Diff line change
Expand Up @@ -1421,9 +1421,9 @@ static struct PyGetSetDef cms_profile_getsetters[] = {
{NULL}};

static PyTypeObject CmsProfile_Type = {
PyVarObject_HEAD_INIT(NULL, 0) "PIL._imagingcms.CmsProfile", /*tp_name*/
sizeof(CmsProfileObject), /*tp_basicsize*/
0, /*tp_itemsize*/
PyVarObject_HEAD_INIT(NULL, 0) "PIL.ImageCms.core.CmsProfile", /*tp_name*/
sizeof(CmsProfileObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)cms_profile_dealloc, /*tp_dealloc*/
0, /*tp_vectorcall_offset*/
Expand Down Expand Up @@ -1473,9 +1473,9 @@ static struct PyGetSetDef cms_transform_getsetters[] = {
{NULL}};

static PyTypeObject CmsTransform_Type = {
PyVarObject_HEAD_INIT(NULL, 0) "CmsTransform", /*tp_name*/
sizeof(CmsTransformObject), /*tp_basicsize*/
0, /*tp_itemsize*/
PyVarObject_HEAD_INIT(NULL, 0) "PIL.ImageCms.core.CmsTransform", /*tp_name*/
sizeof(CmsTransformObject), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)cms_transform_dealloc, /*tp_dealloc*/
0, /*tp_vectorcall_offset*/
Expand Down

0 comments on commit abb73b5

Please sign in to comment.