From: Sergey Miryanov Date: Thu, 24 Jul 2025 11:30:27 +0000 (-0700) Subject: gh-137054: remove obsolete counting of objects in young generation under `Py_STATS... X-Git-Tag: v3.15.0a1~860 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e93c30d4666f925c6a5a2cc4952f69782760d101;p=thirdparty%2FPython%2Fcpython.git gh-137054: remove obsolete counting of objects in young generation under `Py_STATS` builds (#137055) --- diff --git a/Python/gc.c b/Python/gc.c index 4160f68c27a3..255362705233 100644 --- a/Python/gc.c +++ b/Python/gc.c @@ -1331,15 +1331,6 @@ gc_collect_young(PyThreadState *tstate, PyGC_Head *visited = &gcstate->old[gcstate->visited_space].head; untrack_tuples(young); GC_STAT_ADD(0, collections, 1); -#ifdef Py_STATS - { - Py_ssize_t count = 0; - PyGC_Head *gc; - for (gc = GC_NEXT(young); gc != young; gc = GC_NEXT(gc)) { - count++; - } - } -#endif PyGC_Head survivors; gc_list_init(&survivors);