mirror of https://github.com/python/cpython
(merge 3.2) Issue #12400: runtest() truncates the StringIO stream before a new
test
This commit is contained in:
commit
fa832dea2a
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue