[Zope3-checkins]
SVN: zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/runner.py
remove debugging code again
Christian Theune
ct at gocept.com
Sun May 4 15:07:32 EDT 2008
Log message for revision 86412:
remove debugging code again
Changed:
U zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/runner.py
-=-
Modified: zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/runner.py
===================================================================
--- zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/runner.py 2008-05-04 19:02:58 UTC (rev 86411)
+++ zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/runner.py 2008-05-04 19:07:31 UTC (rev 86412)
@@ -400,11 +400,9 @@
])
subin, subout, suberr = os.popen3(args)
- subout_total = ''
while True:
try:
for l in subout:
- subout_total += l
sys.stdout.write(l)
except IOError, e:
if e.errno == errno.EINTR:
@@ -424,8 +422,7 @@
raise
except:
raise SubprocessError(
- 'No subprocess summary found', subout_total)
- #'No subprocess summary found', line+suberr.read())
+ 'No subprocess summary found', line+suberr.read())
while nfail > 0:
nfail -= 1
More information about the Zope3-Checkins
mailing list