From: Neal Norwitz Date: Fri, 28 Apr 2006 04:34:43 +0000 (+0000) Subject: Try to really fix the slow buildbots this time. X-Git-Tag: v2.5b1~782 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd28d1c6c2741e4a8124112120bd262a8bbb26b1;p=python Try to really fix the slow buildbots this time. Printing to stdout, doesn't mean the data was actually written. It depends on the buffering, so we need to flush. This will hopefully really fix the buildbots getting killed due to no output on the slow bots. --- diff --git a/Lib/test/test_compiler.py b/Lib/test/test_compiler.py index a59d6aa7ba..483bc18289 100644 --- a/Lib/test/test_compiler.py +++ b/Lib/test/test_compiler.py @@ -26,6 +26,7 @@ class CompilerTest(unittest.TestCase): next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL print >>sys.__stdout__, \ ' testCompileLibrary still working, be patient...' + sys.__stdout__.flush() if not basename.endswith(".py"): continue