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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2015-01-16.19:55:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421438148.04.0.307260333821.issue23252@psf.upfronthosting.co.za>
In-reply-to
Content
ZIP files can be created to transfer it via unseekable streams (pipes, sockets). Mercurial uses a workaround to write ZIP files right to wsgirequest, but this is possible only with writestr(). write() needs seek() to updated file size, compressed sized and CRC. However ZIP file format supports streamed data without writing sizes and CRC before file data. It is possible and desirable to add full support of unseekable output files in zipfile.
History
Date User Action Args
2015-01-16 19:55:48serhiy.storchakasetrecipients: + serhiy.storchaka
2015-01-16 19:55:48serhiy.storchakasetmessageid: <1421438148.04.0.307260333821.issue23252@psf.upfronthosting.co.za>
2015-01-16 19:55:47serhiy.storchakalinkissue23252 messages
2015-01-16 19:55:47serhiy.storchakacreate