Don't insist on cStringIO.

This commit is contained in:
Guido van Rossum 2007-05-09 23:45:09 +00:00
parent e2c8f2d581
commit 62b8871561
1 changed files with 2 additions and 2 deletions

View File

@ -128,7 +128,7 @@ import getopt
import random
import warnings
import re
import cStringIO
import StringIO
import traceback
# I see no other way to suppress these warnings;
@ -540,7 +540,7 @@ def runtest_inner(test, generate, verbose, quiet,
if verbose:
cfp = None
else:
cfp = cStringIO.StringIO()
cfp = StringIO.StringIO() # XXX Should use io.StringIO()
try:
save_stdout = sys.stdout