[Python-checkins] r62441 - python/trunk/Tools/pybench/pybench.py

gregory.p.smith python-checkins at python.org
Mon Apr 21 19:47:00 CEST 2008


Author: gregory.p.smith
Date: Mon Apr 21 19:46:40 2008
New Revision: 62441

Log:
explicitly flush after the ... since there wasn't a newline


Modified:
   python/trunk/Tools/pybench/pybench.py

Modified: python/trunk/Tools/pybench/pybench.py
==============================================================================
--- python/trunk/Tools/pybench/pybench.py	(original)
+++ python/trunk/Tools/pybench/pybench.py	Mon Apr 21 19:46:40 2008
@@ -501,6 +501,7 @@
     def calibrate(self):
 
         print 'Calibrating tests. Please wait...',
+        sys.stdout.flush()
         if self.verbose:
             print
             print


More information about the Python-checkins mailing list