Message129201
Python 3.2 (r32:88445, Feb 20 2011, 21:51:21)
[GCC 4.2.1 (Apple Inc. build 5664)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import gzip
>>> import io
>>> f = io.TextIOWrapper(gzip.open("file.gz"),encoding='latin-1')
>>> f.readline()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
io.UnsupportedOperation: read1
>>> |
|
Date |
User |
Action |
Args |
2011-02-23 14:46:42 | dabeaz | set | recipients:
+ dabeaz, pitrou, vstinner, eric.araujo, r.david.murray |
2011-02-23 14:46:42 | dabeaz | set | messageid: <1298472402.82.0.198184911676.issue10791@psf.upfronthosting.co.za> |
2011-02-23 14:46:41 | dabeaz | link | issue10791 messages |
2011-02-23 14:46:41 | dabeaz | create | |
|