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 d24a22e commit 3536133Copy full SHA for 3536133
Python/gc.c
@@ -1296,15 +1296,6 @@ gc_collect_young(PyThreadState *tstate,
1296
PyGC_Head *young = &gcstate->young.head;
1297
PyGC_Head *visited = &gcstate->old[gcstate->visited_space].head;
1298
GC_STAT_ADD(0, collections, 1);
1299
-#ifdef Py_STATS
1300
- {
1301
- Py_ssize_t count = 0;
1302
- PyGC_Head *gc;
1303
- for (gc = GC_NEXT(young); gc != young; gc = GC_NEXT(gc)) {
1304
- count++;
1305
- }
1306
1307
-#endif
1308
1309
PyGC_Head survivors;
1310
gc_list_init(&survivors);
0 commit comments