summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gc.py
Commit message (Expand)AuthorAgeFilesLines
* gh-126491: Revert "GH-126491: Lower heap size limit with faster marking (GH-1...Petr Viktorin2024-12-101-3/+11
* GH-126491: Lower heap size limit with faster marking (GH-127519)Mark Shannon2024-12-061-11/+3
* GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...Mark Shannon2024-12-021-10/+14
* Revert "GH-126491: GC: Mark objects reachable from roots before doing cycle c...Hugo van Kemenade2024-11-191-14/+19
* GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...Mark Shannon2024-11-181-19/+14
* gh-126312: Don't traverse frozen objects on the free-threaded build (#126338)Peter Bierma2024-11-151-0/+38
* gh-125900: Clean-up logic around immortalization in free-threading (#125901)Sam Gross2024-10-241-9/+2
* gh-125859: Fix crash when `gc.get_objects` is called during GC (#125882)Sam Gross2024-10-241-0/+23
* gh-124538: Fix crash when using `gc.get_referents` on an untracked capsule ob...Peter Bierma2024-09-261-0/+18
* gh-118846: Fix free-threading test failures when run sequentially (#118864)Sam Gross2024-05-101-2/+18
* gh-117376: Make code objects use deferred reference counting (#117823)Sam Gross2024-04-161-1/+3
* gh-116622: Test updates for Android (#117299)Malcolm Smith2024-04-051-1/+2
* gh-117478: Add `@support.requires_gil_enabled` decorator (#117479)Sam Gross2024-04-041-4/+5
* gh-116303: Skip test module dependent tests if test modules are unavailable (...Erlend E. Aasland2024-04-031-5/+5
* gh-114099: Additions to standard library to support iOS (GH-117052)Russell Keith-Magee2024-03-281-0/+1
* GH-117108: Set the "old space bit" to "visited" for all young objects (#117213)Mark Shannon2024-03-261-23/+1
* GH-117108: Change the size of the GC increment to about 1% of the total heap ...Mark Shannon2024-03-221-10/+25
* GH-108362: Incremental Cycle GC (GH-116206)Mark Shannon2024-03-201-20/+52
* gh-116604: Fix test_gc on free-threaded build (#116662)Sam Gross2024-03-131-1/+3
* gh-116604: Correctly honor the gc status when calling _Py_RunGC (#116628)Pablo Galindo Salgado2024-03-121-0/+25
* gh-112529: Make the GC scheduling thread-safe (#114880)Sam Gross2024-02-161-0/+1
* GH-108362: Revert "GH-108362: Incremental GC implementation (GH-108038)" (#11...Mark Shannon2024-02-071-2/+20
* GH-108362: Incremental GC implementation (GH-108038)Mark Shannon2024-02-051-20/+2
* gh-112529: Implement GC for free-threaded builds (#114262)Sam Gross2024-01-251-2/+11
* gh-113688: Split up gcmodule.c (gh-113715)Sam Gross2024-01-051-1/+1
* gh-99430: Remove duplicated tests for old-styled classes (#99432)Nikita Sobolev2022-11-131-42/+0
* gh-93353: Add test.support.late_deletion() (#93774)Victor Stinner2022-06-131-10/+4
* gh-91636: Don't clear required fields of function objects (GH-91651)Dennis Sweeney2022-04-211-0/+67
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-0/+1
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-1/+2
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-131-15/+14
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-20/+17
* bpo-44184: Fix subtype_dealloc() for freed type (GH-26274)Victor Stinner2021-05-211-1/+33
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25171)Inada Naoki2021-04-041-1/+1
* bpo-41984: GC track all user classes (GH-22701)Brandt Bucher2020-10-151-3/+3
* bpo-40275: Use new test.support helper submodules in tests (GH-21448)Hai Shi2020-08-031-2/+3
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-3/+3
* bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)Victor Stinner2020-02-031-5/+1
* bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...Pablo Galindo2020-01-141-0/+18
* bpo-38991: Remove test.support.strip_python_stderr() (GH-17490)Victor Stinner2019-12-081-3/+3
* bpo-38006: Add unit test for weakref clear bug (GH-16788)Neil Schemenauer2019-10-161-0/+66
* bpo-38379: Don't block collection of unreachable objects when some objects re...Pablo Galindo2019-10-131-16/+82
* bpo-38379: don't claim objects are collected when they aren't (#16658)Tim Peters2019-10-091-0/+70
* bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)Victor Stinner2019-10-071-6/+9
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-1/+1
* bpo-36155: Check for identity on test_gc.test_get_objects (GH-12116)Pablo Galindo2019-03-011-12/+36
* bpo-36016: Add generation option to gc.getobjects() (GH-11909)Pablo Galindo2019-02-231-0/+32
* bpo-9263: Dump Python object on GC assertion failure (GH-10062)Victor Stinner2018-10-251-3/+66
* bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918)Zackery Spytz2018-07-031-1/+16
* Revert "bpo-31356: Add context manager to temporarily disable GC GH-5495Yury Selivanov2018-02-021-70/+1