https://github.com/python/cpython/commit/28c5adfca997d10debb5a50692a4a7a02ff48d6b commit: 28c5adfca997d10debb5a50692a4a7a02ff48d6b branch: 3.13 author: sobolevn <m...@sobolevn.me> committer: sobolevn <m...@sobolevn.me> date: 2025-06-25T12:25:27+03:00 summary:
[3.13] gh-135839: Fix `module_traverse` and `module_clear` in `_interpchannelsmodule` (GH-135840) (#135919) (cherry picked from commit dd59c786cfb1018eb5abe877bfa7265ea9a3c2b9) files: M Modules/_interpchannelsmodule.c diff --git a/Modules/_interpchannelsmodule.c b/Modules/_interpchannelsmodule.c index 7f812d9eac69e8..4bfefd65f17446 100644 --- a/Modules/_interpchannelsmodule.c +++ b/Modules/_interpchannelsmodule.c @@ -3556,8 +3556,7 @@ module_traverse(PyObject *mod, visitproc visit, void *arg) { module_state *state = get_module_state(mod); assert(state != NULL); - traverse_module_state(state, visit, arg); - return 0; + return traverse_module_state(state, visit, arg); } static int @@ -3567,8 +3566,7 @@ module_clear(PyObject *mod) assert(state != NULL); // Now we clear the module state. - clear_module_state(state); - return 0; + return clear_module_state(state); } static void _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: arch...@mail-archive.com