File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,22 +96,22 @@ _convert_argb2rgba(PyObject *self, PyObject *args)
96
96
return ret ;
97
97
}
98
98
99
- static PyMethodDef ConvertMethods [] = {
99
+ static PyMethodDef _convert_methods [] = {
100
100
{"argb2rgba" , _convert_argb2rgba , METH_VARARGS ,
101
101
"Convert aRGB to RGBA in place." },
102
102
{NULL , NULL , 0 , NULL }
103
103
};
104
104
105
- static struct PyModuleDef convertmodule = {
105
+ static struct PyModuleDef _convert_module = {
106
106
PyModuleDef_HEAD_INIT ,
107
107
"_convert" ,
108
108
NULL ,
109
109
0 ,
110
- ConvertMethods
110
+ _convert_methods ,
111
111
};
112
112
113
113
PyMODINIT_FUNC
114
114
PyInit__convert (void )
115
115
{
116
- return PyModule_Create2 (& convertmodule , PYTHON_API_VERSION );
116
+ return PyModule_Create2 (& _convert_module , PYTHON_API_VERSION );
117
117
}
You can’t perform that action at this time.
0 commit comments