Searched refs:DEBUG_SAVEALL (Results 1 – 11 of 11) sorted by relevance
19 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in190 If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added to226 .. data:: DEBUG_SAVEALL236 DEBUG_INSTANCES | DEBUG_OBJECTS | DEBUG_SAVEALL``).
52 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */ macro55 DEBUG_SAVEALL665 if ((_PyRuntime.gc.debug & DEBUG_SAVEALL) || has_legacy_finalizer(op)) { in handle_legacy_finalizers()755 if (_PyRuntime.gc.debug & DEBUG_SAVEALL) { in delete_garbage()1555 ADD_INT(DEBUG_SAVEALL); in PyInit_gc()1614 if (!(_PyRuntime.gc.debug & DEBUG_SAVEALL) in _PyGC_DumpShutdownStats()
161 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */ macro166 DEBUG_SAVEALL788 if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) { in handle_finalizers()811 if (debug & DEBUG_SAVEALL) { in delete_garbage()1422 ADD_INT(DEBUG_SAVEALL); in initgc()
20 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in214 If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be287 .. data:: DEBUG_SAVEALL297 DEBUG_SAVEALL``).
157 gc.set_debug(gc.DEBUG_SAVEALL)
208 gc.set_debug(debug | gc.DEBUG_SAVEALL)
236 gc.set_debug(debug | gc.DEBUG_SAVEALL)
448 gc.set_debug(gc.DEBUG_SAVEALL)
761 gc.set_debug(gc.DEBUG_SAVEALL)
8604 - gc: Add DEBUG_SAVEALL option. When enabled all garbage objects
25983 - gc: Add DEBUG_SAVEALL option. When enabled all garbage objects