This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dabeaz
Recipients dabeaz, eric.araujo, pitrou, r.david.murray, vstinner
Date 2011-02-23.14:46:41
SpamBayes Score 5.3682614e-11
Marked as misclassified No
Message-id <1298472402.82.0.198184911676.issue10791@psf.upfronthosting.co.za>
In-reply-to
Content
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
>>>
History
Date User Action Args
2011-02-23 14:46:42dabeazsetrecipients: + dabeaz, pitrou, vstinner, eric.araujo, r.david.murray
2011-02-23 14:46:42dabeazsetmessageid: <1298472402.82.0.198184911676.issue10791@psf.upfronthosting.co.za>
2011-02-23 14:46:41dabeazlinkissue10791 messages
2011-02-23 14:46:41dabeazcreate