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 therve
Recipients therve
Date 2007-12-14.09:20:29
SpamBayes Score 0.077410474
Marked as misclassified No
Message-id <1197624030.23.0.503522059328.issue1625@psf.upfronthosting.co.za>
In-reply-to
Content
The BZ2File class only supports one stream per file. It possible to have
multiple streams concatenated in one file, it the resulting data should
be the concatenation of all the streams. It's what the bunzip2 program
produces, for example. It's also supported by the gzip module.

Once this done, this would add the ability to open a file for appending,
by adding another stream to the file.

I'll probably try to do this, but the fact it's done in C (unlike gzip)
makes it harder, so if someone beats me to it, etc.
History
Date User Action Args
2007-12-14 09:20:30thervesetspambayes_score: 0.0774105 -> 0.077410474
recipients: + therve
2007-12-14 09:20:30thervesetspambayes_score: 0.0774105 -> 0.0774105
messageid: <1197624030.23.0.503522059328.issue1625@psf.upfronthosting.co.za>
2007-12-14 09:20:30thervelinkissue1625 messages
2007-12-14 09:20:29thervecreate