SVN: zope.testing/branches/ctheune-cleanup/src/zope/testing/testrunner/runner.py remove debugging code again
Christian Theune <[email protected]>
| Newsgroups | gmane.comp.web.zope.zope3.cvs |
|---|---|
| Message-ID | <20080504190732.9B220399C4__12524.9543846168$1209928124$gmane$org@mail.zope.org> |
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