From c744b57fd61f200d0a40650a82cc55d0240a710d Mon Sep 17 00:00:00 2001 From: Sergey Miryanov Date: Sat, 9 Aug 2025 05:32:45 -0700 Subject: [PATCH] gh-137562: Remove reference for GC_REACHABLE in comment (GH-137563) GC_REACHABLE is obsolete --- Python/gc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Python/gc.c b/Python/gc.c index 1050eae60fd3..03455e88d5ee 100644 --- a/Python/gc.c +++ b/Python/gc.c @@ -570,8 +570,7 @@ _PyGC_VisitFrameStack(_PyInterpreterFrame *frame, visitproc visit, void *arg) } /* Subtract internal references from gc_refs. After this, gc_refs is >= 0 - * for all objects in containers, and is GC_REACHABLE for all tracked gc - * objects not in containers. The ones with gc_refs > 0 are directly + * for all objects in containers. The ones with gc_refs > 0 are directly * reachable from outside containers, and so can't be collected. */ static void -- 2.47.3