diff options
author | Donghee Na <donghee.na@python.org> | 2024-01-11 00:47:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 15:47:13 +0000 |
commit | f728f7242c6008a16daaa5dde8e1db786857c50e (patch) | |
tree | 5e6dd8e921e432c9de0b0d8f60805ec03a8584eb /Python/pylifecycle.c | |
parent | a0c9cf9456c2ee7a89d9bd859c07afac8cf5e893 (diff) | |
download | cpython-f728f7242c6008a16daaa5dde8e1db786857c50e.tar.gz cpython-f728f7242c6008a16daaa5dde8e1db786857c50e.zip |
gh-111968: Use per-thread freelists for float in free-threading (gh-113886)
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 bd6475f99e4..6468e72eaad 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -1757,10 +1757,10 @@ finalize_interp_types(PyInterpreterState *interp) _PySlice_Fini(interp); _PyUnicode_Fini(interp); - _PyFloat_Fini(interp); _PyFreeListState *state = _PyFreeListState_GET(); _PyList_Fini(state); + _PyFloat_Fini(state); #ifdef Py_DEBUG _PyStaticObjects_CheckRefcnt(interp); |