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

View file

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