summaryrefslogtreecommitdiffstats
path: root/Python/gc_gil.c
diff options
context:
space:
mode:
authorDonghee Na <donghee.na@python.org>2024-01-10 15:47:13 (GMT)
committerGitHub <noreply@github.com>2024-01-10 15:47:13 (GMT)
commitf728f7242c6008a16daaa5dde8e1db786857c50e (patch)
tree5e6dd8e921e432c9de0b0d8f60805ec03a8584eb /Python/gc_gil.c
parenta0c9cf9456c2ee7a89d9bd859c07afac8cf5e893 (diff)
downloadcpython-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.c1
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);