Searched refs:DEBUG_SAVEALL (Results 1 – 10 of 10) 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``).
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 in238 If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be311 .. data:: DEBUG_SAVEALL321 DEBUG_SAVEALL``).
124 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */ macro127 DEBUG_SAVEALL930 if ((gcstate->debug & DEBUG_SAVEALL) || has_legacy_finalizer(op)) { in handle_legacy_finalizers()994 if (gcstate->debug & DEBUG_SAVEALL) { in delete_garbage()2037 ADD_INT(DEBUG_SAVEALL); in PyInit_gc()2107 if (!(gcstate->debug & DEBUG_SAVEALL) in _PyGC_DumpShutdownStats()
243 gc.set_debug(gc.DEBUG_SAVEALL)
208 gc.set_debug(debug | gc.DEBUG_SAVEALL)
252 gc.set_debug(debug | gc.DEBUG_SAVEALL)
929 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