summaryrefslogtreecommitdiffstats
path: root/Python/gc.c
Commit message (Expand)AuthorAgeFilesLines
* gh-110850: Remove _PyTime_TimeUnchecked() function (#118552)Victor Stinner2024-05-051-1/+0
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-021-1/+6
* Silence compiler warnings in gc.c (#117422)Guido van Rossum2024-04-011-0/+3
* GH-117108: Set the "old space bit" to "visited" for all young objects (#117213)Mark Shannon2024-03-261-17/+37
* A few minor tweaks to get stats working and compiling cleanly. (#117219)Mark Shannon2024-03-251-5/+3
* GH-117108: Change the size of the GC increment to about 1% of the total heap ...Mark Shannon2024-03-221-15/+15
* GH-108362: Incremental Cycle GC (GH-116206)Mark Shannon2024-03-201-308/+498
* gh-116604: Correctly honor the gc status when calling _Py_RunGC (#116628)Pablo Galindo Salgado2024-03-121-0/+4
* gh-110850: Use public PyTime functions (#115746)Victor Stinner2024-02-201-1/+1
* gh-110850: Rename internal PyTime C API functions (#115734)Victor Stinner2024-02-201-3/+3
* gh-110850: Cleanup pycore_time.h includes (#115724)Victor Stinner2024-02-201-0/+1
* gh-110850: Replace _PyTime_t with PyTime_t (#115719)Victor Stinner2024-02-201-1/+1
* gh-112175: Add `eval_breaker` to `PyThreadState` (#115194)Brett Simmers2024-02-201-3/+6
* gh-115124: Use _PyObject_ASSERT() in gc.c (#115125)Victor Stinner2024-02-151-15/+22
* GH-108362: Revert "GH-108362: Incremental GC implementation (GH-108038)" (#11...Mark Shannon2024-02-071-514/+310
* GH-108362: Incremental GC implementation (GH-108038)Mark Shannon2024-02-051-310/+514
* gh-112529: Implement GC for free-threaded builds (#114262)Sam Gross2024-01-251-2/+6
* gh-112529: Use GC heaps for GC allocations in free-threaded builds (gh-114157)Sam Gross2024-01-201-6/+7
* gh-111968: Introduce _PyFreeListState and _PyFreeListState_GET API (gh-113584)Donghee Na2024-01-091-16/+1
* gh-113688: Split up gcmodule.c (gh-113715)Sam Gross2024-01-051-0/+1958