summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-05-04 18:45:02 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-05-04 18:45:02 (GMT)
commit957a23b0883c1d92f4d5c5de2459319615a8ed34 (patch)
tree3aa62a3de56405919f45f4da403f409c6aab2287 /Include
parent5de183a07cfce837c926a3600369babdfc1a2ef4 (diff)
downloadcpython-957a23b0883c1d92f4d5c5de2459319615a8ed34.zip
cpython-957a23b0883c1d92f4d5c5de2459319615a8ed34.tar.gz
cpython-957a23b0883c1d92f4d5c5de2459319615a8ed34.tar.bz2
Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again.
Diffstat (limited to 'Include')
-rw-r--r--Include/pythonrun.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pythonrun.h b/Include/pythonrun.h
index 4d24b2d..e8a582d 100644
--- a/Include/pythonrun.h
+++ b/Include/pythonrun.h
@@ -219,6 +219,7 @@ 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_FUNC(void) _PyType_Fini(void);
PyAPI_DATA(PyThreadState *) _Py_Finalizing;
#endif