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

test
This commit is contained in:
Victor Stinner 2011-06-29 17:29:22 +02:00
commit fa832dea2a
1 changed files with 1 additions and 0 deletions

View File

@ -847,6 +847,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