commit | 62b887156134a2f62011dc5603f8646e5ffbe501 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed May 09 23:45:09 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed May 09 23:45:09 2007 +0000 |
tree | faf53f59582277f06ef5eb661495c26ef075c7e3 | |
parent | e2c8f2d5817fe530a873248bb5d82dcaa7d0f57e [diff] [blame] |
Don't insist on cStringIO.
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 87d9dc9..331b441 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py
@@ -128,7 +128,7 @@ 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 @@ if verbose: cfp = None else: - cfp = cStringIO.StringIO() + cfp = StringIO.StringIO() # XXX Should use io.StringIO() try: save_stdout = sys.stdout