aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/thread.c b/Python/thread.c
index 7fdedb0b9b7..f90cd34a073 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -7,7 +7,7 @@
#include "Python.h"
#include "pycore_pystate.h" // _PyInterpreterState_GET()
-#include "pycore_structseq.h" // _PyStructSequence_FiniType()
+#include "pycore_structseq.h" // _PyStructSequence_FiniBuiltin()
#include "pycore_pythread.h"
#ifndef DONT_HAVE_STDIO_H
@@ -195,5 +195,5 @@ _PyThread_FiniType(PyInterpreterState *interp)
return;
}
- _PyStructSequence_FiniType(&ThreadInfoType);
+ _PyStructSequence_FiniBuiltin(&ThreadInfoType);
}