diff options
author | Donghee Na <donghee.na@python.org> | 2024-01-11 18:46:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 18:46:28 (GMT) |
commit | 2e7577b622616ef5ff2d1460fb5bebf845f0edf3 (patch) | |
tree | 3972f8fc6ea93e3eed72284df76d1d710cca896f /Python/pylifecycle.c | |
parent | 8717f7b495c8c33fd37017f4e7684609c304c556 (diff) | |
download | cpython-2e7577b622616ef5ff2d1460fb5bebf845f0edf3.zip cpython-2e7577b622616ef5ff2d1460fb5bebf845f0edf3.tar.gz cpython-2e7577b622616ef5ff2d1460fb5bebf845f0edf3.tar.bz2 |
gh-111968: Use per-thread freelists for tuple in free-threading (gh-113921)
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r-- | Python/pylifecycle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 6468e72..4198f6a 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -1752,13 +1752,13 @@ finalize_interp_types(PyInterpreterState *interp) _PyUnicode_ClearInterned(interp); _PyDict_Fini(interp); - _PyTuple_Fini(interp); _PySlice_Fini(interp); _PyUnicode_Fini(interp); _PyFreeListState *state = _PyFreeListState_GET(); + _PyTuple_Fini(state); _PyList_Fini(state); _PyFloat_Fini(state); |