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 akuchling
Recipients akuchling, therve, thomaslee
Date 2008-01-19.22:00:08
SpamBayes Score 0.16742535
Marked as misclassified No
Message-id <1200780009.97.0.348382211776.issue1625@psf.upfronthosting.co.za>
In-reply-to
Content
Like gzip, you can concatenate two bzip2 files:

bzip2 -c /etc/passwd >/tmp/pass.bz2

bzip2 -c /etc/passwd >>/tmp/pass.bz2

bunzip2 will output both parts, generating two copies of the file.

So nothing needs to be done on compression, but uncompression needs to
look for another chunk of compressed data after finishing one chunk.
History
Date User Action Args
2008-01-19 22:00:10akuchlingsetspambayes_score: 0.167425 -> 0.16742535
recipients: + akuchling, therve, thomaslee
2008-01-19 22:00:10akuchlingsetspambayes_score: 0.167425 -> 0.167425
messageid: <1200780009.97.0.348382211776.issue1625@psf.upfronthosting.co.za>
2008-01-19 22:00:08akuchlinglinkissue1625 messages
2008-01-19 22:00:08akuchlingcreate