From 257cf2fb83bfdc5a83707731eae157247e330732 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 6 Aug 2013 20:50:48 +0200 Subject: [PATCH] In _PyGC_Fini(), lose the reference that was kept to the time module --- Modules/gcmodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index dac7feb44c..02e0cb831e 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -1661,6 +1661,7 @@ void _PyGC_Fini(void) { Py_CLEAR(callbacks); + Py_CLEAR(tmod); } /* for debugging */ -- 2.50.1