We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b34d7b commit 90db465Copy full SHA for 90db465
Python/pylifecycle.c
@@ -1257,7 +1257,7 @@ flush_std_files(void)
1257
1258
1259
static void
1260
-finalize_interp_types(PyThreadState *tstate, int is_main_interp)
+finalize_interp_types(PyThreadState *tstate)
1261
{
1262
_PyExc_Fini(tstate);
1263
_PyFrame_Fini(tstate);
@@ -1300,7 +1300,7 @@ finalize_interp_clear(PyThreadState *tstate)
1300
1301
_PyWarnings_Fini(tstate->interp);
1302
1303
- finalize_interp_types(tstate, is_main_interp);
+ finalize_interp_types(tstate);
1304
}
1305
1306
0 commit comments