Issue #12400: runtest() truncates the StringIO stream before a new test

This commit is contained in:
Victor Stinner 2011-06-29 17:26:38 +02:00
parent 125b2ba41e
commit 85b3a492d6
1 changed files with 1 additions and 0 deletions

View File

@ -793,6 +793,7 @@ def runtest(test, verbose, quiet,
if runtest.stringio is None:
runtest.stringio = io.StringIO()
stream = runtest.stringio
stream.truncate(0)
orig_stdout = sys.stdout
orig_stderr = sys.stderr