We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e9bca commit 639cc24Copy full SHA for 639cc24
1 file changed
Modules/gcmodule.c
@@ -234,8 +234,8 @@ gc_get_count_impl(PyObject *module)
234
#else
235
return Py_BuildValue("(iii)",
236
_Py_atomic_load_int_relaxed(&gcstate->young.count),
237
- _Py_atomic_load_int_relaxed(&gcstate->old[0].count),
238
- _Py_atomic_load_int_relaxed(&gcstate->old[1].count));
+ gcstate->old[0].count,
+ gcstate->old[1].count);
239
#endif
240
}
241
0 commit comments