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 vstinner
Date 2020-04-28.21:04:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588107853.55.0.523053148553.issue40428@roundup.psfhosted.org>
In-reply-to
Content
The following C functions are implementation details and should not be called directly:

- PyAsyncGen_ClearFreeLists()
- PyContext_ClearFreeList()
- PyDict_ClearFreeList()
- PyFloat_ClearFreeList()
- PyFrame_ClearFreeList()
- PyList_ClearFreeList()
- PySet_ClearFreeList()
- PyTuple_ClearFreeList()

To call them all at once, simply call explicitly PyGC_Collect().

Attached PR move these functions to the internal C API and stop to export them.
History
Date User Action Args
2020-04-28 21:04:13vstinnersetrecipients: + vstinner
2020-04-28 21:04:13vstinnersetmessageid: <1588107853.55.0.523053148553.issue40428@roundup.psfhosted.org>
2020-04-28 21:04:13vstinnerlinkissue40428 messages
2020-04-28 21:04:13vstinnercreate