mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
gh-111968: Use per-thread freelists for tuple in free-threading (gh-113921)
This commit is contained in:
parent
8717f7b495
commit
2e7577b622
8 changed files with 45 additions and 70 deletions
|
|
@ -1752,13 +1752,13 @@ finalize_interp_types(PyInterpreterState *interp)
|
|||
_PyUnicode_ClearInterned(interp);
|
||||
|
||||
_PyDict_Fini(interp);
|
||||
_PyTuple_Fini(interp);
|
||||
|
||||
_PySlice_Fini(interp);
|
||||
|
||||
_PyUnicode_Fini(interp);
|
||||
|
||||
_PyFreeListState *state = _PyFreeListState_GET();
|
||||
_PyTuple_Fini(state);
|
||||
_PyList_Fini(state);
|
||||
_PyFloat_Fini(state);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue