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

@ -130,6 +130,7 @@ PyAPI_FUNC(void) _PyImport_Fini(void);
PyAPI_FUNC(void) PyMethod_Fini(void);
PyAPI_FUNC(void) PyFrame_Fini(void);
PyAPI_FUNC(void) PyCFunction_Fini(void);
PyAPI_FUNC(void) PyDict_Fini(void);
PyAPI_FUNC(void) PyTuple_Fini(void);
PyAPI_FUNC(void) PyList_Fini(void);
PyAPI_FUNC(void) PySet_Fini(void);