mirror of
https://github.com/python/cpython.git
synced 2025-11-26 21:33:10 +00:00
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.
This commit is contained in:
parent
0bbbb005c5
commit
dd28d1c6c2
1 changed files with 1 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue