aboutsummaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index 0b7b61d8b1..515994f049 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -3102,6 +3102,21 @@ error:
}
+void
+_PySys_Fini(PyInterpreterState *interp)
+{
+ if (_Py_IsMainInterpreter(interp)) {
+ _PyStructSequence_FiniType(&VersionInfoType);
+ _PyStructSequence_FiniType(&FlagsType);
+#if defined(MS_WINDOWS)
+ _PyStructSequence_FiniType(&WindowsVersionType);
+#endif
+ _PyStructSequence_FiniType(&Hash_InfoType);
+ _PyStructSequence_FiniType(&AsyncGenHooksType);
+ }
+}
+
+
static PyObject *
makepathobject(const wchar_t *path, wchar_t delim)
{