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 acassaigne
Recipients acassaigne
Date 2012-03-24.16:27:10
SpamBayes Score 1.530772e-07
Marked as misclassified No
Message-id <1332606431.21.0.286905846716.issue14399@psf.upfronthosting.co.za>
In-reply-to
Content
I want to update or create a comment to zip file.

For instance, I have test.zip file.
I'm using these statement to create a comment :

from zipfile import ZipFile

z=ZipFile('test.zip','a')
z.comment='Create a new comment'
z.close()

After to ran this script, the zip file test.zip doesn't including the new comment !

I can have the expected behavior when I add a new file inner zip archive.
History
Date User Action Args
2012-03-24 16:27:11acassaignesetrecipients: + acassaigne
2012-03-24 16:27:11acassaignesetmessageid: <1332606431.21.0.286905846716.issue14399@psf.upfronthosting.co.za>
2012-03-24 16:27:10acassaignelinkissue14399 messages
2012-03-24 16:27:10acassaignecreate