mirror of
https://github.com/python/cpython.git
synced 2025-12-09 18:48:05 +00: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue