This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Mark.Shannon, corona10, shihai1991, vstinner
Date 2020-06-23.09:38:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592905085.16.0.825532026114.issue40521@roundup.psfhosted.org>
In-reply-to
Content
All free lists are now per-interpreter! See Modules/gcmodule.c:

static void
clear_freelists(PyThreadState *tstate)
{
    _PyFrame_ClearFreeList(tstate);
    _PyTuple_ClearFreeList(tstate);
    _PyFloat_ClearFreeList(tstate);
    _PyList_ClearFreeList(tstate);
    _PyDict_ClearFreeList(tstate);
    _PyAsyncGen_ClearFreeLists(tstate);
    _PyContext_ClearFreeList(tstate);
}

I'm still working on the Unicode caches.
History
Date User Action Args
2020-06-23 09:38:05vstinnersetrecipients: + vstinner, Mark.Shannon, corona10, shihai1991
2020-06-23 09:38:05vstinnersetmessageid: <1592905085.16.0.825532026114.issue40521@roundup.psfhosted.org>
2020-06-23 09:38:05vstinnerlinkissue40521 messages
2020-06-23 09:38:05vstinnercreate