index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_gc.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-99430: Remove duplicated tests for old-styled classes (#99432)
Nikita Sobolev
2022-11-13
1
-42/+0
*
gh-93353: Add test.support.late_deletion() (#93774)
Victor Stinner
2022-06-13
1
-10/+4
*
gh-91636: Don't clear required fields of function objects (GH-91651)
Dennis Sweeney
2022-04-21
1
-0/+67
*
bpo-40280: Detect missing threading on WASM platforms (GH-32352)
Christian Heimes
2022-04-07
1
-0/+1
*
bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)
Christian Heimes
2022-01-25
1
-1/+2
*
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon
2021-10-13
1
-15/+14
*
bpo-45229: Remove test_main in many tests (GH-28405)
Serhiy Storchaka
2021-09-19
1
-20/+17
*
bpo-44184: Fix subtype_dealloc() for freed type (GH-26274)
Victor Stinner
2021-05-21
1
-1/+33
*
bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25171)
Inada Naoki
2021-04-04
1
-1/+1
*
bpo-41984: GC track all user classes (GH-22701)
Brandt Bucher
2020-10-15
1
-3/+3
*
bpo-40275: Use new test.support helper submodules in tests (GH-21448)
Hai Shi
2020-08-03
1
-2/+3
*
bpo-40275: Adding threading_helper submodule in test.support (GH-20263)
Hai Shi
2020-05-27
1
-3/+3
*
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
1
-5/+1
*
bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...
Pablo Galindo
2020-01-14
1
-0/+18
*
bpo-38991: Remove test.support.strip_python_stderr() (GH-17490)
Victor Stinner
2019-12-08
1
-3/+3
*
bpo-38006: Add unit test for weakref clear bug (GH-16788)
Neil Schemenauer
2019-10-16
1
-0/+66
*
bpo-38379: Don't block collection of unreachable objects when some objects re...
Pablo Galindo
2019-10-13
1
-16/+82
*
bpo-38379: don't claim objects are collected when they aren't (#16658)
Tim Peters
2019-10-09
1
-0/+70
*
bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)
Victor Stinner
2019-10-07
1
-6/+9
*
Fix typos mostly in comments, docs and test names (GH-15209)
Min ho Kim
2019-08-30
1
-1/+1
*
bpo-36155: Check for identity on test_gc.test_get_objects (GH-12116)
Pablo Galindo
2019-03-01
1
-12/+36
*
bpo-36016: Add generation option to gc.getobjects() (GH-11909)
Pablo Galindo
2019-02-23
1
-0/+32
*
bpo-9263: Dump Python object on GC assertion failure (GH-10062)
Victor Stinner
2018-10-25
1
-3/+66
*
bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918)
Zackery Spytz
2018-07-03
1
-1/+16
*
Revert "bpo-31356: Add context manager to temporarily disable GC GH-5495
Yury Selivanov
2018-02-02
1
-70/+1
*
bpo-31356: Add context manager to temporarily disable GC (GH-4224)
Pablo Galindo
2018-01-29
1
-1/+70
*
bpo-31558: Add gc.freeze() (#3705)
brainfvck
2017-10-16
1
-0/+6
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-6/+1
*
Issue #19527: Fixed tests with defined COUNT_ALLOCS.
Serhiy Storchaka
2016-07-03
1
-2/+5
|
\
|
*
Issue #19527: Fixed tests with defined COUNT_ALLOCS.
Serhiy Storchaka
2016-07-03
1
-2/+5
*
|
test_gc: remove unused imports
Victor Stinner
2016-01-23
1
-2/+0
|
/
*
Issue #9517: Move script_helper to the support package.
Berker Peksag
2015-05-06
1
-2/+3
*
Issue #23726: Don't enable GC for user subclasses of non-GC types that don't ...
Antoine Pitrou
2015-04-13
1
-0/+20
*
Issue #23799: Added test.support.start_threads() for running and cleaning up
Serhiy Storchaka
2015-04-01
1
-9/+3
*
Make some tests more frienly to MemoryError.
Serhiy Storchaka
2015-03-28
1
-4/+6
*
Issue #21435: Segfault in gc with cyclic trash
Tim Peters
2014-05-08
1
-0/+32
*
Issue #20532: Tests which use _testcapi now are marked as CPython only.
Serhiy Storchaka
2014-02-07
1
-5/+17
|
\
*
|
Issue #18112: PEP 442 implementation (safe object finalization).
Antoine Pitrou
2013-07-30
1
-6/+12
*
|
Issue #1545463: Global variables caught in reference cycles are now garbage-c...
Antoine Pitrou
2013-05-06
1
-0/+36
*
|
Issue #16351: New function gc.get_stats() returns per-generation collection s...
Antoine Pitrou
2012-10-30
1
-0/+26
|
/
*
Issue #13992: The trashcan mechanism is now thread-safe. This eliminates
Antoine Pitrou
2012-09-05
1
-0/+69
*
pep8-ize test names
Antoine Pitrou
2012-04-16
1
-3/+3
*
Fix refleak in test_gc
Antoine Pitrou
2012-04-16
1
-1/+2
*
Issue #10576: Add a progress callback to gcmodule
Kristján Valur Jónsson
2012-04-15
1
-1/+135
*
Issue #11761: make tests for gc.get_count() less fragile
Antoine Pitrou
2011-04-04
1
-16/+27
|
\
|
*
Issue #11761: make tests for gc.get_count() less fragile
Antoine Pitrou
2011-04-04
1
-16/+27
|
|
\
|
|
*
Issue #11761: make tests for gc.get_count() less fragile
Antoine Pitrou
2011-04-04
1
-16/+27
*
|
|
Issue #10992: make tests pass when run under coverage.
Brett Cannon
2011-02-22
1
-1/+5
|
/
/
*
|
Fix ResourceWarning occuring on Windows. Close stdout/stderr pipes.
Brian Curtin
2010-11-01
1
-0/+2
*
|
Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...
Georg Brandl
2010-10-24
1
-3/+5
[next]