commit | f75dbef208673865b31d32d5a2196b15b1b03024 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Fri Feb 08 00:11:31 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Fri Feb 08 00:11:31 2008 +0000 |
tree | 45cbf29ffd048f33fa21b1aae333d50209b7a6ea | |
parent | 83525859092e4bc2605503dc02abc8e27f2820b0 [diff] [blame] |
Deallocate content of the dict free list on interpreter shutdown
diff --git a/Include/pythonrun.h b/Include/pythonrun.h index cfc40e3..0164088 100644 --- a/Include/pythonrun.h +++ b/Include/pythonrun.h
@@ -130,6 +130,7 @@ 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);