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 nadeem.vawda
Recipients amaury.forgeotdarc, nadeem.vawda, python-dev, serhiy.storchaka
Date 2012-11-04.23:58:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352073538.89.0.803988688212.issue16350@psf.upfronthosting.co.za>
In-reply-to
Content
Fixed. Thanks for the patch!


> This hacking is not needed, if first argument of PyBytes_FromStringAndSize()
> is NULL, the contents of the bytes object are uninitialized.

Oh, cool. I didn't know about that.


> What should unconsumed_tail be equal after EOF? b'' or unused_data?

Definitely b''. unconsumed_tail is meant to hold compressed data that should
be passed in to the next call to decompress(). If we are at EOF, then
decompress() should not be called again, and so it would be misleading to have
unconsumed_tail be non-empty.
History
Date User Action Args
2012-11-04 23:58:58nadeem.vawdasetrecipients: + nadeem.vawda, amaury.forgeotdarc, python-dev, serhiy.storchaka
2012-11-04 23:58:58nadeem.vawdasetmessageid: <1352073538.89.0.803988688212.issue16350@psf.upfronthosting.co.za>
2012-11-04 23:58:58nadeem.vawdalinkissue16350 messages
2012-11-04 23:58:58nadeem.vawdacreate