diff options
author | Christian Heimes <christian@cheimes.de> | 2008-02-08 00:11:31 +0000 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-02-08 00:11:31 +0000 |
commit | f75dbef208673865b31d32d5a2196b15b1b03024 (patch) | |
tree | 45cbf29ffd048f33fa21b1aae333d50209b7a6ea /Python/pythonrun.c | |
parent | Make sure a switch statement does not have repetitive case statements. (diff) | |
download | cpython-f75dbef208673865b31d32d5a2196b15b1b03024.tar.gz cpython-f75dbef208673865b31d32d5a2196b15b1b03024.tar.bz2 cpython-f75dbef208673865b31d32d5a2196b15b1b03024.zip |
Deallocate content of the dict free list on interpreter shutdown
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index f5465c5edee..ec31af10c9e 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 */ |