[Python-3000-checkins] r55217 - python/branches/py3k-struni/Lib/pprint.py

guido.van.rossum python-3000-checkins at python.org
Thu May 10 01:42:21 CEST 2007


Author: guido.van.rossum
Date: Thu May 10 01:42:18 2007
New Revision: 55217

Modified:
   python/branches/py3k-struni/Lib/pprint.py
Log:
Don't insist on cStringIO.


Modified: python/branches/py3k-struni/Lib/pprint.py
==============================================================================
--- python/branches/py3k-struni/Lib/pprint.py	(original)
+++ python/branches/py3k-struni/Lib/pprint.py	Thu May 10 01:42:18 2007
@@ -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"]


More information about the Python-3000-checkins mailing list