8000 gh-111178: fix incorrect function signatures for Windows builds by picnixz · Pull Request #133072 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111178: fix incorrect function signatures for Windows builds #133072

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix incorrect function signatures
  • Loading branch information
picnixz committed Apr 28, 2025
commit b7e80fe4255ea2e70b8aa4d88ad5bd87b2b9d29a
2 changes: 1 addition & 1 deletion PC/_testconsole.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ static PyModuleDef testconsole_def = {
};

PyMODINIT_FUNC
PyInit__testconsole(PyObject *spec)
PyInit__testconsole(void)
{
return PyModuleDef_Init(&testconsole_def);
}
Expand Down
2 changes: 1 addition & 1 deletion PC/winreg.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ PyHKEY_deallocFunc(PyObject *ob)
}

static int
PyHKEY_traverseFunc(PyHKEYObject *self, visitproc visit, void *arg)
PyHKEY_traverseFunc(PyObject *self, visitproc visit, void *arg)
{
Py_VISIT(Py_TYPE(self));
return 0;
Expand Down
Loading
0