mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
gh-111499: Fix PYTHONMALLOCSTATS at Python exit (#120021)
Call _PyObject_DebugMallocStats() earlier in Py_FinalizeEx(), before the interpreter is deleted.
This commit is contained in:
parent
26e5c6e835
commit
5a1205b641
1 changed files with 6 additions and 6 deletions
|
@ -2119,6 +2119,12 @@ Py_FinalizeEx(void)
|
||||||
}
|
}
|
||||||
#endif /* Py_TRACE_REFS */
|
#endif /* Py_TRACE_REFS */
|
||||||
|
|
||||||
|
#ifdef WITH_PYMALLOC
|
||||||
|
if (malloc_stats) {
|
||||||
|
_PyObject_DebugMallocStats(stderr);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
finalize_interp_delete(tstate->interp);
|
finalize_interp_delete(tstate->interp);
|
||||||
|
|
||||||
#ifdef Py_REF_DEBUG
|
#ifdef Py_REF_DEBUG
|
||||||
|
@ -2129,12 +2135,6 @@ Py_FinalizeEx(void)
|
||||||
#endif
|
#endif
|
||||||
_Py_FinalizeAllocatedBlocks(runtime);
|
_Py_FinalizeAllocatedBlocks(runtime);
|
||||||
|
|
||||||
#ifdef WITH_PYMALLOC
|
|
||||||
if (malloc_stats) {
|
|
||||||
_PyObject_DebugMallocStats(stderr);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
call_ll_exitfuncs(runtime);
|
call_ll_exitfuncs(runtime);
|
||||||
|
|
||||||
_PyRuntime_Finalize();
|
_PyRuntime_Finalize();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue