6 lines
124 B
Python

# Import the StringIO object.
try:
from cStringIO import StringIO
except ImportError:
from StringIO import StringIO