From f75dbef208673865b31d32d5a2196b15b1b03024 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 8 Feb 2008 00:11:31 +0000 Subject: Deallocate content of the dict free list on interpreter shutdown --- Python/pythonrun.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index f5465c5ede..ec31af10c9 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -473,6 +473,7 @@ Py_Finalize(void) PyString_Fini(); PyInt_Fini(); PyFloat_Fini(); + PyDict_Fini(); #ifdef Py_USING_UNICODE /* Cleanup Unicode implementation */ -- cgit v1.2.1