diff options
author | Raymond Hettinger <python@rcn.com> | 2004-10-07 03:58:07 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-10-07 03:58:07 +0000 |
commit | 7ab9b4e9a42bb289e6498fa60297e0293326cc39 (patch) | |
tree | b55a7f558991ef2cb74627b65120c95430767330 /Python | |
parent | e0aa0128d07b555956b0824b52e2ba958a016a75 (diff) | |
download | cpython-7ab9b4e9a42bb289e6498fa60297e0293326cc39.tar.gz |
Finalize the freelist of list objects.
Diffstat (limited to 'Python')
-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 917f2be00b..06bec1e038 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -416,6 +416,7 @@ Py_Finalize(void) PyFrame_Fini(); PyCFunction_Fini(); PyTuple_Fini(); + PyList_Fini(); PyString_Fini(); PyInt_Fini(); PyFloat_Fini(); |