diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-06 20:50:48 +0200 |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-08-06 20:50:48 +0200 |
| commit | 257cf2fb83bfdc5a83707731eae157247e330732 (patch) | |
| tree | ff66c7aa5c4b0a68e6b8914f50709aa8193d6feb /Modules/gcmodule.c | |
| parent | 0e0ccf73ff0591eccfd39604c432c09711083fa2 (diff) | |
| download | cpython-git-257cf2fb83bfdc5a83707731eae157247e330732.tar.gz | |
In _PyGC_Fini(), lose the reference that was kept to the time module
Diffstat (limited to 'Modules/gcmodule.c')
| -rw-r--r-- | Modules/gcmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 */ |
