[Python-3000-checkins] r56937 - python/branches/py3k/Lib/test/regrtest.py

neal.norwitz python-3000-checkins at python.org
Sun Aug 12 02:00:45 CEST 2007


Author: neal.norwitz
Date: Sun Aug 12 02:00:44 2007
New Revision: 56937

Modified:
   python/branches/py3k/Lib/test/regrtest.py
Log:
Make sure to flush output when writing dots during -R runs

Modified: python/branches/py3k/Lib/test/regrtest.py
==============================================================================
--- python/branches/py3k/Lib/test/regrtest.py	(original)
+++ python/branches/py3k/Lib/test/regrtest.py	Sun Aug 12 02:00:44 2007
@@ -682,6 +682,7 @@
         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)


More information about the Python-3000-checkins mailing list