We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fdf00e commit 5e813c5Copy full SHA for 5e813c5
Include/internal/pycore_gc.h
@@ -303,9 +303,8 @@ struct gc_generation_stats {
303
};
304
305
enum _GCPhase {
306
- GC_PHASE_DONE = 0,
307
- GC_PHASE_MARK = 1,
308
- GC_PHASE_COLLECT = 2
+ GC_PHASE_MARK = 0,
+ GC_PHASE_COLLECT = 1
309
310
311
struct _gc_runtime_state {
Include/internal/pycore_runtime_init.h
@@ -132,6 +132,7 @@ extern PyTypeObject _PyExc_MemoryError;
132
{ .threshold = 0, }, \
133
}, \
134
.work_to_do = -5000, \
135
+ .phase = 0, \
136
137
.qsbr = { \
138
.wr_seq = QSBR_INITIAL, \
0 commit comments