Deallocate content of the dict free list on interpreter shutdown

This commit is contained in:
Christian Heimes 2008-02-08 00:11:31 +00:00
parent 8352585909
commit f75dbef208
4 changed files with 17 additions and 0 deletions

View file

@ -473,6 +473,7 @@ Py_Finalize(void)
PyString_Fini();
PyInt_Fini();
PyFloat_Fini();
PyDict_Fini();
#ifdef Py_USING_UNICODE
/* Cleanup Unicode implementation */