Mercurial > p > roundup > code
view roundup/anypy/io_.py @ 4686:4e740f02e165
Remove pywin32 installation dependency by porting portalocker.py to ctypes.
portalocker.py lock/unlock functions now return result of operation, support
for Windows 95/98/ME is removed.
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Wed, 28 Nov 2012 04:51:56 +0300 |
| parents | abd2db0a159a |
| children | dfd0bcc947e5 |
line wrap: on
line source
try: from io import StringIO, BytesIO except: from StringIO import StringIO BytesIO = StringIO
