diff options
author | Christian Heimes <christian@cheimes.de> | 2008-02-08 00:11:31 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-02-08 00:11:31 (GMT) |
commit | f75dbef208673865b31d32d5a2196b15b1b03024 (patch) | |
tree | 45cbf29ffd048f33fa21b1aae333d50209b7a6ea /Include/pythonrun.h | |
parent | 83525859092e4bc2605503dc02abc8e27f2820b0 (diff) | |
download | cpython-f75dbef208673865b31d32d5a2196b15b1b03024.zip cpython-f75dbef208673865b31d32d5a2196b15b1b03024.tar.gz cpython-f75dbef208673865b31d32d5a2196b15b1b03024.tar.bz2 |
Deallocate content of the dict free list on interpreter shutdown
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r-- | Include/pythonrun.h | 1 |
1 files changed, 1 insertions, 0 deletions
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) _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); |