[Zpt] CVS: Packages/TAL - runtest.py:1.10
fred@digiciool.com
fred@digiciool.com
Thu, 15 Mar 2001 12:51:54 -0500 (EST)
Update of /cvs-repository/Packages/TAL
In directory korak:/tmp/cvs-serv26872
Modified Files:
runtest.py
Log Message:
Make sure we always flush stdout before switch to stderr.
--- Updated File runtest.py in package Packages/TAL --
--- runtest.py 2001/03/15 17:48:31 1.9
+++ runtest.py 2001/03/15 17:51:54 1.10
@@ -143,8 +143,10 @@
errors = 1
if quiet:
print sys.exc_type
+ sys.stdout.flush()
else:
print "Failed:"
+ sys.stdout.flush()
traceback.print_exc()
continue
head, tail = os.path.split(arg)