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 wrobell
Recipients wrobell
Date 2011-01-13.17:14:21
SpamBayes Score 0.029996261
Marked as misclassified No
Message-id <1294938865.74.0.735458664613.issue10900@psf.upfronthosting.co.za>
In-reply-to
Content
There is problem to uncompress large files with bz2 module.

For example, please download 13GB OpenStreetMap file using following torrent

http://osm-torrent.torres.voyager.hr/files/planet-latest.osm.bz2.torrent

Try to count lines in the compressed file with command...

   python3.2 bz2wc.py planet-110105.osm.bz2 
   3971

... but there is much more lines in that file

   bzip2 -dc < planet-110105.osm.bz2 | wc -l
   
The command

   bzip2 -t planet-110105.osm.bz2

validates the file successfully.
History
Date User Action Args
2011-01-13 17:14:25wrobellsetrecipients: + wrobell
2011-01-13 17:14:25wrobellsetmessageid: <1294938865.74.0.735458664613.issue10900@psf.upfronthosting.co.za>
2011-01-13 17:14:22wrobelllinkissue10900 messages
2011-01-13 17:14:22wrobellcreate