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 aeros, alanmcintyre, serhiy.storchaka, twouters, yudilevi
Date 2020-04-04.10:14:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585995275.62.0.21948401695.issue40175@roundup.psfhosted.org>
In-reply-to
Content
There were other issues and discussions about this.

The problem of removing a file from a ZIP archive is similar to the problem of removing a line from a file. It cannot be made efficiently, and it is not even always possible. In some cases it may be better (simpler, more efficient and robust) to copy a file line by line into a new file, skipping particular lines, and the same is true for a ZIP archive. In other cases you can truncate the file or the ZIP archive. Solution that is optimal in one case may be inappropriate in other case.
History
Date User Action Args
2020-04-04 10:14:35serhiy.storchakasetrecipients: + serhiy.storchaka, twouters, alanmcintyre, aeros, yudilevi
2020-04-04 10:14:35serhiy.storchakasetmessageid: <1585995275.62.0.21948401695.issue40175@roundup.psfhosted.org>
2020-04-04 10:14:35serhiy.storchakalinkissue40175 messages
2020-04-04 10:14:35serhiy.storchakacreate