Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #26346
| Date | 2012-08-01 12:47 +0200 |
|---|---|
| From | Laszlo Nagy <gandalf@shopzeus.com> |
| Subject | Re: CRC-checksum failed in gzip |
| References | <CAF_E5JahAZ4w3em_aqBbx63pxiTU-nqtRLZWb5_jRQr2yqhRWA@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2817.1343818024.4697.python-list@python.org> (permalink) |
On 2012-08-01 12:39, andrea crotti wrote:
> We're having some really obscure problems with gzip.
> There is a program running with python2.7 on a 2.6.18-128.el5xen (red
> hat I think) kernel.
>
> Now this program does the following:
> if filename == 'out2.txt':
> out2 = open('out2.txt')
> elif filename == 'out2.txt.gz'
> out2 = open('out2.txt.gz')
Gzip file is binary. You should open it in binary mode.
out2 = open('out2.txt.gz',"b")
Otherwise carriage return and newline characters will be converted (depending on the platform).
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: CRC-checksum failed in gzip Laszlo Nagy <gandalf@shopzeus.com> - 2012-08-01 12:47 +0200
csiph-web