summaryrefslogtreecommitdiff
path: root/Include/pythonrun.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-18 20:14:34 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-18 20:14:34 +0100
commitf34a0cdc6cbf6507508392e4588a9ca0ce8cb6b0 (patch)
treecfa9a741a50b0fdff952e849431d39043e80b5dd /Include/pythonrun.h
parent2251a3d233f8c57072b5999b13d82ce06f7ecfe4 (diff)
downloadcpython-git-f34a0cdc6cbf6507508392e4588a9ca0ce8cb6b0.tar.gz
Issue #10227: Add an allocation cache for a single slice object.
Patch by Stefan Behnel.
Diffstat (limited to 'Include/pythonrun.h')
-rw-r--r--Include/pythonrun.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index bdad15c652..fc6c85434a 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -211,6 +211,7 @@ PyAPI_FUNC(void) PyByteArray_Fini(void);
PyAPI_FUNC(void) PyFloat_Fini(void);
PyAPI_FUNC(void) PyOS_FiniInterrupts(void);
PyAPI_FUNC(void) _PyGC_Fini(void);
+PyAPI_FUNC(void) PySlice_Fini(void);
PyAPI_DATA(PyThreadState *) _Py_Finalizing;
#endif