From: Hood Chatham Date: Sun, 3 Apr 2022 07:45:26 +0000 (-0700) Subject: bpo-47196: Fix one more PyInit function signature (GH-32280) X-Git-Tag: v3.11.0a7~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3faa9f78d4b9a8c0fd4657b434bdb08ae1f28800;p=thirdparty%2FPython%2Fcpython.git bpo-47196: Fix one more PyInit function signature (GH-32280) I missed one PyInit function in #32244. Automerge-Triggered-By: GH:tiran --- diff --git a/Modules/_testmultiphase.c b/Modules/_testmultiphase.c index e9a37a019134..1b4f58eb1c0b 100644 --- a/Modules/_testmultiphase.c +++ b/Modules/_testmultiphase.c @@ -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); }