From a525ba514a5ab9df8add156f08b4c137da4783fd Mon Sep 17 00:00:00 2001 From: Kirill Podoprigora Date: Thu, 3 Jul 2025 15:14:14 +0300 Subject: [PATCH] `Python/gc.c`: Refer to `InternalDocs` instead of devguide. (#136243) --- Python/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/gc.c b/Python/gc.c index 7b0e6d6e803..02135a3fb44 100644 --- a/Python/gc.c +++ b/Python/gc.c @@ -1,6 +1,6 @@ // This implements the reference cycle garbage collector. // The Python module interface to the collector is in gcmodule.c. -// See https://devguide.python.org/internals/garbage-collector/ +// See InternalDocs/garbage_collector.md for more infromation. #include "Python.h" #include "pycore_ceval.h" // _Py_set_eval_breaker_bit()