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 vstinner
Recipients dabeaz, eric.araujo, pitrou, r.david.murray, vstinner
Date 2011-02-23.14:42:58
SpamBayes Score 2.2911878e-05
Marked as misclassified No
Message-id <1298472179.27.0.922635176967.issue10791@psf.upfronthosting.co.za>
In-reply-to
Content
What is the problem with Python 3.2? It works correctly here:

$ cat bla.txt
bli
blo
bla
$ gzip bla.txt 
$ ./python 
Python 3.3a0 (unknown, Feb 23 2011, 13:03:50) 
>>> import gzip, io
>>> f = io.TextIOWrapper(gzip.open("bla.txt.gz"),encoding='ascii')
>>> f.read()
'bli\nblo\nbla\n'

If someone added Python 3.2 in the Versions field because of an issue with bz2: please open a new issue instead.
History
Date User Action Args
2011-02-23 14:42:59vstinnersetrecipients: + vstinner, pitrou, eric.araujo, r.david.murray, dabeaz
2011-02-23 14:42:59vstinnersetmessageid: <1298472179.27.0.922635176967.issue10791@psf.upfronthosting.co.za>
2011-02-23 14:42:58vstinnerlinkissue10791 messages
2011-02-23 14:42:58vstinnercreate