Mercurial > p > roundup > code
view roundup/anypy/io_.py @ 4546:d39c37fd2940 git
Repository conversion from Subversion to git.
| author | Eric S. Raymond <esr@thyrsus.com> |
|---|---|
| date | Tue, 18 Oct 2011 10:20:29 -0400 |
| parents | abd2db0a159a |
| children | dfd0bcc947e5 |
line wrap: on
line source
try: from io import StringIO, BytesIO except: from StringIO import StringIO BytesIO = StringIO
