We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e04511 commit 96bc172Copy full SHA for 96bc172
PC/_testconsole.c
@@ -161,7 +161,7 @@ static PyModuleDef testconsole_def = {
161
};
162
163
PyMODINIT_FUNC
164
-PyInit__testconsole(PyObject *spec)
+PyInit__testconsole(void)
165
{
166
return PyModuleDef_Init(&testconsole_def);
167
}
PC/winreg.c
@@ -157,7 +157,7 @@ PyHKEY_deallocFunc(PyObject *ob)
157
158
159
static int
160
-PyHKEY_traverseFunc(PyHKEYObject *self, visitproc visit, void *arg)
+PyHKEY_traverseFunc(PyObject *self, visitproc visit, void *arg)
Py_VISIT(Py_TYPE(self));
return 0;
0 commit comments