diff options
Diffstat (limited to 'Python/gc.c')
-rw-r--r-- | Python/gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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() |