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 e1d4fdc commit 941117aCopy full SHA for 941117a
Python/pylifecycle.c
@@ -1301,15 +1301,15 @@ finalize_interp_clear(PyThreadState *tstate)
1301
_PyGC_CollectNoFail();
1302
}
1303
1304
- finalize_interp_types(tstate, is_main_interp);
1305
-
1306
/* Clear all loghooks */
1307
/* Both _PySys_Audit function and users still need PyObject, such as tuple.
1308
Call _PySys_ClearAuditHooks when PyObject available. */
1309
if (is_main_interp) {
1310
_PySys_ClearAuditHooks(tstate);
1311
1312
+ finalize_interp_types(tstate, is_main_interp);
+
1313
1314
/* XXX Still allocated:
1315
- various static ad-hoc pointers to interned strings
0 commit comments