From: Neal Norwitz Date: Sun, 12 Aug 2007 00:00:44 +0000 (+0000) Subject: Make sure to flush output when writing dots during -R runs X-Git-Tag: v3.0a1~439 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bb217d9ed81fea4593d6341a5b17903d72ac3efe;p=thirdparty%2FPython%2Fcpython.git Make sure to flush output when writing dots during -R runs --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 31e4eaf8182c..6f6436f89b8b 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -682,6 +682,7 @@ def dash_R(the_module, test, indirect_test, huntrleaks): rc = sys.gettotalrefcount() run_the_test() sys.stderr.write('.') + sys.stderr.flush() dash_R_cleanup(fs, ps, pic) if i >= nwarmup: deltas.append(sys.gettotalrefcount() - rc - 2)