File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -777,10 +777,10 @@ static PyMethodDef arraykit_methods[] = {
777777};
778778
779779static struct PyModuleDef arraykit_module = {
780- PyModuleDef_HEAD_INIT ,
781- .m_name = "_arraykit" ,
782- .m_doc = NULL ,
783- .m_size = -1 ,
780+ PyModuleDef_HEAD_INIT ,
781+ .m_name = "_arraykit" ,
782+ .m_doc = NULL ,
783+ .m_size = -1 ,
784784 .m_methods = arraykit_methods ,
785785};
786786
@@ -792,13 +792,13 @@ PyInit__arraykit(void)
792792
793793 PyObject * copy = PyImport_ImportModule ("copy" );
794794 if (!copy ) {
795- Py_DECREF (m );
795+ Py_XDECREF (m );
796796 return NULL ;
797797 }
798798 PyObject * deepcopy = PyObject_GetAttrString (copy , "deepcopy" );
799799 Py_DECREF (copy );
800800 if (!deepcopy ) {
801- Py_DECREF (m );
801+ Py_XDECREF (m );
802802 return NULL ;
803803 }
804804
You can’t perform that action at this time.
0 commit comments