[Python-checkins] r68370 - sandbox/trunk/io-c/io.py

antoine.pitrou python-checkins at python.org
Wed Jan 7 01:08:45 CET 2009


Author: antoine.pitrou
Date: Wed Jan  7 01:08:45 2009
New Revision: 68370

Log:
Alias _BytesIO to BytesIO and _StringIO to StringIO.



Modified:
   sandbox/trunk/io-c/io.py

Modified: sandbox/trunk/io-c/io.py
==============================================================================
--- sandbox/trunk/io-c/io.py	(original)
+++ sandbox/trunk/io-c/io.py	Wed Jan  7 01:08:45 2009
@@ -2152,3 +2152,7 @@
 
 except ImportError:
     StringIO = _StringIO
+
+# make test_memoryio happy!
+_BytesIO = BytesIO
+_StringIO = StringIO


More information about the Python-checkins mailing list