File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -976,6 +976,7 @@ _abcmodule_free(void *module)
976976}
977977
978978static PyModuleDef_Slot _abcmodule_slots [] = {
979+ _Py_INTERNAL_ABI_SLOT ,
979980 {Py_mod_exec , _abcmodule_exec },
980981 {Py_mod_multiple_interpreters , Py_MOD_PER_INTERPRETER_GIL_SUPPORTED },
981982 {Py_mod_gil , Py_MOD_GIL_NOT_USED },
Original file line number Diff line number Diff line change @@ -1064,6 +1064,7 @@ _locale_exec(PyObject *module)
10641064}
10651065
10661066static struct PyModuleDef_Slot _locale_slots [] = {
1067+ _Py_INTERNAL_ABI_SLOT , /* XXX */
10671068 {Py_mod_exec , _locale_exec },
10681069 {Py_mod_multiple_interpreters , Py_MOD_PER_INTERPRETER_GIL_SUPPORTED },
10691070 {Py_mod_gil , Py_MOD_GIL_NOT_USED },
Original file line number Diff line number Diff line change @@ -952,6 +952,7 @@ errno_exec(PyObject *module)
952952}
953953
954954static PyModuleDef_Slot errno_slots [] = {
955+ _Py_INTERNAL_ABI_SLOT , /* XXX */
955956 {Py_mod_exec , errno_exec },
956957 {Py_mod_multiple_interpreters , Py_MOD_PER_INTERPRETER_GIL_SUPPORTED },
957958 {Py_mod_gil , Py_MOD_GIL_NOT_USED },
You can’t perform that action at this time.
0 commit comments