diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-18 19:14:34 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-18 19:14:34 (GMT) |
commit | f34a0cdc6cbf6507508392e4588a9ca0ce8cb6b0 (patch) | |
tree | cfa9a741a50b0fdff952e849431d39043e80b5dd /Python/pythonrun.c | |
parent | 2251a3d233f8c57072b5999b13d82ce06f7ecfe4 (diff) | |
download | cpython-f34a0cdc6cbf6507508392e4588a9ca0ce8cb6b0.zip cpython-f34a0cdc6cbf6507508392e4588a9ca0ce8cb6b0.tar.gz cpython-f34a0cdc6cbf6507508392e4588a9ca0ce8cb6b0.tar.bz2 |
Issue #10227: Add an allocation cache for a single slice object.
Patch by Stefan Behnel.
Diffstat (limited to 'Python/pythonrun.c')
-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 0f2f050..0c267fc 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -531,6 +531,7 @@ Py_Finalize(void) PyLong_Fini(); PyFloat_Fini(); PyDict_Fini(); + PySlice_Fini(); /* Cleanup Unicode implementation */ _PyUnicode_Fini(); |