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 kristjan.jonsson
Recipients kristjan.jonsson, pitrou
Date 2009-04-22.10:26:01
SpamBayes Score 2.9360428e-05
Marked as misclassified No
Message-id <1240395963.92.0.167145521264.issue5804@psf.upfronthosting.co.za>
In-reply-to
Content
Note, I thought of the "tail" argument to reflect the "unused_data" 
member of the decompressobj().  But a more useful way is actually this:
result, offset = zlib.decompress(buffer, offset=0)
if offset<len(buffer):
    result2, offset = zlib.decompress(buffer, offset=offset)

This avoids data copying as much as possible.  The presence of a non-
default offset argument, would trigger the "tuple" return value.

We could add the same argument to decompressobj.decompress, and 
add "unused_offset" member there for symmetry.

Any thoughts?
History
Date User Action Args
2009-04-22 10:26:04kristjan.jonssonsetrecipients: + kristjan.jonsson, pitrou
2009-04-22 10:26:03kristjan.jonssonsetmessageid: <1240395963.92.0.167145521264.issue5804@psf.upfronthosting.co.za>
2009-04-22 10:26:02kristjan.jonssonlinkissue5804 messages
2009-04-22 10:26:01kristjan.jonssoncreate