8000 gh-135839: Fix `traverse_module_state` usage in `_interpchannelsmodule` by sobolevn · Pull Request #135840 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-135839: Fix traverse_module_state usage in _interpchannelsmodule #135840

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 2 commits into from
Jun 25, 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
Next Next commit
gh-135839: Fix traverse_module_state usage in _interpchannelsmodule
  • Loading branch information
sobolevn committed Jun 23, 2025
commit 673541988813e728bc5a69fc4f5490069d09af87
3 changes: 1 addition & 2 deletions Modules/_interpchannelsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3614,8 +3614,7 @@ module_traverse(PyObject *mod, visitproc visit, void *arg)
{
module_state *state = get_module_state(mod);
assert(state != NULL);
(void)traverse_module_state(state, visit, arg);
return 0;
return traverse_module_state(state, visit, arg);
}

static int
Expand Down
Loading
0