From 7fa511ba576b9a760f3971ad16dbbbbf91c3f39c Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Fri, 19 Jan 2024 03:15:00 +0900 Subject: gh-111968: Use per-thread freelists for generator in free-threading (gh-114189) --- Python/gc_gil.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/gc_gil.c') diff --git a/Python/gc_gil.c b/Python/gc_gil.c index edf84176f79..04c1c184250 100644 --- a/Python/gc_gil.c +++ b/Python/gc_gil.c @@ -12,7 +12,6 @@ void _PyGC_ClearAllFreeLists(PyInterpreterState *interp) { _PyDict_ClearFreeList(interp); - _PyAsyncGen_ClearFreeLists(interp); _Py_ClearFreeLists(&interp->freelist_state, 0); } -- cgit v1.2.3