summaryrefslogtreecommitdiffstats
path: root/Lib/pprint.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-09 23:42:18 (GMT)
committerGuido van Rossum <guido@python.org>2007-05-09 23:42:18 (GMT)
commit7fe7d1ac4da9e10af39ed0736c141c39b4cbb944 (patch)
tree5bde6fcc971d774d9da608ed1f56cfda029bd1ad /Lib/pprint.py
parenta5c313dc4dc4a247e3515217bc5f2d56a5c01422 (diff)
downloadcpython-7fe7d1ac4da9e10af39ed0736c141c39b4cbb944.zip
cpython-7fe7d1ac4da9e10af39ed0736c141c39b4cbb944.tar.gz
cpython-7fe7d1ac4da9e10af39ed0736c141c39b4cbb944.tar.bz2
Don't insist on cStringIO.
Diffstat (limited to 'Lib/pprint.py')
-rw-r--r--Lib/pprint.py2
1 files changed, 1 insertions, 1 deletions
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 @@ saferepr()
import sys as _sys
-from cStringIO import StringIO as _StringIO
+from StringIO import StringIO as _StringIO
__all__ = ["pprint","pformat","isreadable","isrecursive","saferepr",
"PrettyPrinter"]