diff options
| author | Donghee Na <donghee.na@python.org> | 2024-02-10 00:57:04 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-10 00:57:04 (GMT) |
| commit | d4d5bae1471788b345155e8e93a2fe4ab92d09dc (patch) | |
| tree | 989f7efdc60aff606679d12b4f1853174dd4365d /Python/gc_gil.c | |
| parent | 564385612cdf72c2fa8e629a68225fb2cd3b3d99 (diff) | |
| download | cpython-d4d5bae1471788b345155e8e93a2fe4ab92d09dc.zip cpython-d4d5bae1471788b345155e8e93a2fe4ab92d09dc.tar.gz cpython-d4d5bae1471788b345155e8e93a2fe4ab92d09dc.tar.bz2 | |
gh-111968: Refactor _PyXXX_Fini to integrate with _PyObject_ClearFreeLists (gh-114899)
Diffstat (limited to 'Python/gc_gil.c')
| -rw-r--r-- | Python/gc_gil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/gc_gil.c b/Python/gc_gil.c index 4e2aa8f..5f1365f 100644 --- a/Python/gc_gil.c +++ b/Python/gc_gil.c @@ -11,7 +11,7 @@ void _PyGC_ClearAllFreeLists(PyInterpreterState *interp) { - _Py_ClearFreeLists(&interp->freelist_state, 0); + _PyObject_ClearFreeLists(&interp->freelist_state, 0); } #endif |
