From 527c2643d176bdc9308491d602a220cb8bfd0e8c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 30 Mar 1995 11:01:44 +0000 Subject: flush stdout before writing to stderr in print_error() --- Python/pythonrun.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 734b72b..2268c71 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -286,6 +286,7 @@ print_error() object *exception, *v, *tb, *f; err_fetch(&exception, &v, &tb); flushline(); + fflush(stdout); if (exception == NULL) fatal("print_error called but no exception"); if (exception == SystemExit) { -- cgit v0.12