Message372148
| 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:05 | vstinner | set | recipients: + vstinner, Mark.Shannon, corona10, shihai1991 |
| 2020-06-23 09:38:05 | vstinner | set | messageid: <1592905085.16.0.825532026114.issue40521@roundup.psfhosted.org> |
| 2020-06-23 09:38:05 | vstinner | link | issue40521 messages |
| 2020-06-23 09:38:05 | vstinner | create | |