summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r--Python/sysmodule.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index d673e40..81dabe6 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -3492,13 +3492,13 @@ void
_PySys_Fini(PyInterpreterState *interp)
{
if (_Py_IsMainInterpreter(interp)) {
- _PyStructSequence_FiniType(&VersionInfoType);
- _PyStructSequence_FiniType(&FlagsType);
+ _PyStructSequence_FiniBuiltin(&VersionInfoType);
+ _PyStructSequence_FiniBuiltin(&FlagsType);
#if defined(MS_WINDOWS)
- _PyStructSequence_FiniType(&WindowsVersionType);
+ _PyStructSequence_FiniBuiltin(&WindowsVersionType);
#endif
- _PyStructSequence_FiniType(&Hash_InfoType);
- _PyStructSequence_FiniType(&AsyncGenHooksType);
+ _PyStructSequence_FiniBuiltin(&Hash_InfoType);
+ _PyStructSequence_FiniBuiltin(&AsyncGenHooksType);
#ifdef __EMSCRIPTEN__
Py_CLEAR(EmscriptenInfoType);
#endif