commit | 7fe7d1ac4da9e10af39ed0736c141c39b4cbb944 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed May 09 23:42:18 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed May 09 23:42:18 2007 +0000 |
tree | 5bde6fcc971d774d9da608ed1f56cfda029bd1ad | |
parent | a5c313dc4dc4a247e3515217bc5f2d56a5c01422 [diff] [blame] |
Don't insist on cStringIO.
diff --git a/Lib/pprint.py b/Lib/pprint.py index a7868cc..7e7ef67 100644 --- a/Lib/pprint.py +++ b/Lib/pprint.py
@@ -36,7 +36,7 @@ import sys as _sys -from cStringIO import StringIO as _StringIO +from StringIO import StringIO as _StringIO __all__ = ["pprint","pformat","isreadable","isrecursive","saferepr", "PrettyPrinter"]