Searched refs:uncollectable (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Doc/library/ |
D | gc.rst | 89 * ``uncollectable`` is the total number of objects which were found 90 to be uncollectable (and were therefore moved to the :data:`garbage` 240 not be freed (uncollectable objects). Starting with Python 3.4, this 250 :const:`DEBUG_UNCOLLECTABLE` is set, in addition all uncollectable objects 277 "uncollectable": When *phase* is "stop", the number of objects 287 Allowing applications to identify and clear their own uncollectable 309 Print information of uncollectable objects found (objects which are not
|
/third_party/python/Modules/ |
D | gcmodule.c | 1349 stats->uncollectable += n; in gc_collect_main() 1365 Py_ssize_t uncollectable) in invoke_gc_callback() argument 1382 "uncollectable", uncollectable); in invoke_gc_callback() 1411 Py_ssize_t result, collected, uncollectable; in gc_collect_with_callback() local 1413 result = gc_collect_main(tstate, generation, &collected, &uncollectable, 0); in gc_collect_with_callback() 1414 invoke_gc_callback(tstate, "stop", generation, collected, uncollectable); in gc_collect_with_callback() 1844 "uncollectable", st->uncollectable in gc_get_stats_impl()
|
/third_party/python/Include/internal/ |
D | pycore_gc.h | 127 Py_ssize_t uncollectable; member
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 895 regrtest now always detects uncollectable objects. Previously, the check was
|
/third_party/python/Doc/whatsnew/ |
D | 3.2.rst | 599 set, all uncollectable objects are printed. This is meant to make the
|
/third_party/python/Misc/ |
D | HISTORY | 12090 become permanently uncollectable GC garbage. Reinstated the Python 3.1 15344 print elapsed times, not only when some objects are uncollectable /
|