mirror of
https://github.com/python/cpython.git
synced 2024-11-24 00:38:00 +01:00
bpo-47196: Fix one more PyInit function signature (GH-32280)
I missed one PyInit function in #32244. Automerge-Triggered-By: GH:tiran
This commit is contained in:
parent
124227c95f
commit
3faa9f78d4
@ -796,7 +796,7 @@ static PyModuleDef def_exec_raise = TEST_MODULE_DEF(
|
||||
"_testmultiphase_exec_raise", slots_exec_raise, NULL);
|
||||
|
||||
PyMODINIT_FUNC
|
||||
PyInit__testmultiphase_exec_raise(PyObject *mod)
|
||||
PyInit__testmultiphase_exec_raise(void)
|
||||
{
|
||||
return PyModuleDef_Init(&def_exec_raise);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user