_Py_Finalizing = tstate;
initialized = 0;
- /* Flush stdout+stderr */
+ /* Flush sys.stdout and sys.stderr */
flush_std_files();
/* Disable signal handling */
/* Destroy all modules */
PyImport_Cleanup();
- /* Flush stdout+stderr (again, in case more was printed) */
+ /* Flush sys.stdout and sys.stderr (again, in case more was printed) */
flush_std_files();
/* Collect final garbage. This disposes of cycles created by
static void
_Py_PrintFatalError(int fd)
{
+ PyObject *ferr, *res;
PyObject *exception, *v, *tb;
int has_tb;
PyThreadState *tstate;
goto display_stack;
}
+ ferr = _PySys_GetObjectId(&PyId_stderr);
+ if (ferr == NULL || ferr == Py_None) {
+ /* sys.stderr is not set yet or set to None,
+ no need to try to display the exception */
+ goto display_stack;
+ }
+
PyErr_NormalizeException(&exception, &v, &tb);
if (tb == NULL) {
tb = Py_None;
}
PyException_SetTraceback(v, tb);
if (exception == NULL) {
- /* too bad, PyErr_NormalizeException() failed */
+ /* PyErr_NormalizeException() failed */
goto display_stack;
}
Py_XDECREF(exception);
Py_XDECREF(v);
Py_XDECREF(tb);
+
+ /* sys.stderr may be buffered: call sys.stderr.flush() */
+ res = _PyObject_CallMethodId(ferr, &PyId_flush, "");
+ if (res == NULL)
+ PyErr_Clear();
+ else
+ Py_DECREF(res);
+
if (has_tb)
return;
fprintf(stderr, "Fatal Python error: %s\n", msg);
fflush(stderr); /* it helps in Windows debug build */
+ /* Print the exception (if an exception is set) with its traceback,
+ * or display the current Python stack. */
_Py_PrintFatalError(fd);
+ /* Flush sys.stdout and sys.stderr */
+ flush_std_files();
+
/* The main purpose of faulthandler is to display the traceback. We already
- * did our best to display it. So faulthandler can now be disabled. */
+ * did our best to display it. So faulthandler can now be disabled.
+ * (Don't trigger it on abort().) */
_PyFaulthandler_Fini();
#ifdef MS_WINDOWS