Code

- Fix StringIO issue2550713: io.StringIO in newer versions of python
[roundup.git] / roundup / anypy / io_.py
2 try:
3     from io import StringIO, BytesIO
4 except:
5     from StringIO import StringIO
6     BytesIO = StringIO