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)
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to