mirror of
https://github.com/python/cpython.git
synced 2025-08-24 18:55:00 +00:00
gh-111968: Use per-thread freelists for generator in free-threading (gh-114189)
This commit is contained in:
parent
2d3f6b56c5
commit
7fa511ba57
9 changed files with 48 additions and 74 deletions
|
@ -1735,7 +1735,6 @@ finalize_interp_types(PyInterpreterState *interp)
|
|||
_PySys_FiniTypes(interp);
|
||||
_PyXI_FiniTypes(interp);
|
||||
_PyExc_Fini(interp);
|
||||
_PyAsyncGen_Fini(interp);
|
||||
_PyFloat_FiniType(interp);
|
||||
_PyLong_FiniTypes(interp);
|
||||
_PyThread_FiniType(interp);
|
||||
|
@ -1759,6 +1758,7 @@ finalize_interp_types(PyInterpreterState *interp)
|
|||
_PyFloat_Fini(state);
|
||||
_PySlice_Fini(state);
|
||||
_PyContext_Fini(state);
|
||||
_PyAsyncGen_Fini(state);
|
||||
|
||||
#ifdef Py_DEBUG
|
||||
_PyStaticObjects_CheckRefcnt(interp);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue