]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-47196: Fix one more PyInit function signature (GH-32280)
authorHood Chatham <roberthoodchatham@gmail.com>
Sun, 3 Apr 2022 07:45:26 +0000 (00:45 -0700)
committerGitHub <noreply@github.com>
Sun, 3 Apr 2022 07:45:26 +0000 (00:45 -0700)
I missed one PyInit function in #32244.

Automerge-Triggered-By: GH:tiran
Modules/_testmultiphase.c

index e9a37a019134f51343f272c24a7b20d63e0d5a72..1b4f58eb1c0b460aedda2dcf43118874466a5de5 100644 (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);
 }