summaryrefslogtreecommitdiffstats
path: root/Python/object_stack.c
Commit message (Collapse)AuthorAgeFilesLines
* gh-111968: Unify freelist naming schema to Eric's suggestion (gh-114581)Donghee Na2024-01-261-2/+2
|
* gh-112529: Implement GC for free-threaded builds (#114262)Sam Gross2024-01-251-0/+87
* gh-112529: Implement GC for free-threaded builds This implements a mark and sweep GC for the free-threaded builds of CPython. The implementation relies on mimalloc to find GC tracked objects (i.e., "containers").