From 257cf2fb83bfdc5a83707731eae157247e330732 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 6 Aug 2013 20:50:48 +0200 Subject: 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 dac7feb..02e0cb8 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 */ -- cgit v0.12