8000 gh-111178: Fix function signatures in misc files by vstinner · Pull Request #131180 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111178: Fix function signatures in misc files #131180

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 4 commits into from
Mar 13, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Remove now useless cast
  • Loading branch information
vstinner committed Mar 13, 2025
commit 4f2fde2f69d12d02ad16ddd36808bf1c9243b0cd
2 changes: 1 addition & 1 deletion Modules/_threadmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ ThreadHandle_set_done(ThreadHandle *self)
return -1;
}

if (_PyOnceFlag_CallOnce(&self->once, (_Py_once_fn_t *)set_done, self) ==
if (_PyOnceFlag_CallOnce(&self->once, set_done, self) ==
-1) {
return -1;
}
Expand Down
Loading
0