Skip to content

Commit ba7112e

Browse files
committed
Remove duplicate declarations from test modules
1 parent 4a2fd0e commit ba7112e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

Modules/_testcapimodule.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3532,7 +3532,6 @@ _testcapi_exec(PyObject *m)
35323532
PyABIInfo_VAR(abi_info);
35333533

35343534
static PyModuleDef_Slot _testcapi_slots[] = {
3535-
_Py_ABI_SLOT,
35363535
{Py_mod_abi, &abi_info},
35373536
{Py_mod_exec, _testcapi_exec},
35383537
{Py_mod_gil, Py_MOD_GIL_NOT_USED},

Modules/_testinternalcapi.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3048,7 +3048,6 @@ module_exec(PyObject *module)
30483048
PyABIInfo_VAR(abi_info);
30493049

30503050
static struct PyModuleDef_Slot module_slots[] = {
3051-
_Py_ABI_SLOT,
30523051
{Py_mod_abi, &abi_info},
30533052
{Py_mod_exec, module_exec},
30543053
{Py_mod_multiple_interpreters, Py_MOD_PER_INTERPRETER_GIL_SUPPORTED},

0 commit comments

Comments
 (0)