Commit 62b88715 authored by Guido van Rossum's avatar Guido van Rossum

Don't insist on cStringIO.

parent e2c8f2d5
...@@ -128,7 +128,7 @@ import getopt ...@@ -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, ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment