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 Iridium.Yang
Recipients Iridium.Yang
Date 2014-11-20.15:20:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1416496843.38.0.905339069508.issue22908@psf.upfronthosting.co.za>
In-reply-to
Content
The ZipExtFile class in zipfile module does not provide a seek method like GzipFile. As a result, it is hard to manipulate files without extract all the content.
For example, a very large tar file compressed with zip. The TarFile module can operate on file object, but need seek method. So the ZipExtFile instance return from ZipFile can not passed into TarFile.
This may seem strange but I encounter this on Samsung firmware.

In fact, the seek method in GzipFile or someother compressed format can be implemented in zipfile very easily. Here is my naive modification (nearly same as in GzipFile)
History
Date User Action Args
2014-11-20 15:20:43Iridium.Yangsetrecipients: + Iridium.Yang
2014-11-20 15:20:43Iridium.Yangsetmessageid: <1416496843.38.0.905339069508.issue22908@psf.upfronthosting.co.za>
2014-11-20 15:20:43Iridium.Yanglinkissue22908 messages
2014-11-20 15:20:43Iridium.Yangcreate