diff options
author | Donghee Na <donghee.na@python.org> | 2024-01-10 15:47:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 15:47:13 (GMT) |
commit | f728f7242c6008a16daaa5dde8e1db786857c50e (patch) | |
tree | 5e6dd8e921e432c9de0b0d8f60805ec03a8584eb /Python/gc_gil.c | |
parent | a0c9cf9456c2ee7a89d9bd859c07afac8cf5e893 (diff) | |
download | cpython-f728f7242c6008a16daaa5dde8e1db786857c50e.zip cpython-f728f7242c6008a16daaa5dde8e1db786857c50e.tar.gz cpython-f728f7242c6008a16daaa5dde8e1db786857c50e.tar.bz2 |
gh-111968: Use per-thread freelists for float in free-threading (gh-113886)
Diffstat (limited to 'Python/gc_gil.c')
-rw-r--r-- | Python/gc_gil.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/gc_gil.c b/Python/gc_gil.c index b0961cd..c8ca397 100644 --- a/Python/gc_gil.c +++ b/Python/gc_gil.c @@ -12,7 +12,6 @@ void _PyGC_ClearAllFreeLists(PyInterpreterState *interp) { _PyTuple_ClearFreeList(interp); - _PyFloat_ClearFreeList(interp); _PyDict_ClearFreeList(interp); _PyAsyncGen_ClearFreeLists(interp); _PyContext_ClearFreeList(interp); |