0
0
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:
Hood Chatham 2022-04-03 00:45:26 -07:00 committed by GitHub
parent 124227c95f
commit 3faa9f78d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}