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.

classification
Title: zipfile incorrectly documented as not supporting archive comments
Type: Stage:
Components: Documentation Versions: Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, georg.brandl, rfk
Priority: normal Keywords: patch

Created on 2010-07-12 23:32 by rfk, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
zipfile_comment_doc.patch rfk, 2010-07-12 23:32
Messages (2)
msg110147 - (view) Author: Ryan Kelly (rfk) Date: 2010-07-12 23:32
The zipfile module is prominently documented as "This module does not currently handle...ZIP files which have appended comments".  But as far as I can tell, it handles them fine - there's even a "comment" property on the ZipFile object that you can set to modify the comment.

I attach a simple doc patch that removes the apparently out-of-date information.
msg112545 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-08-02 20:52
Thanks, fixed in r83575.
History
Date User Action Args
2022-04-11 14:57:03adminsetgithub: 53484
2010-08-02 20:52:19georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg112545

resolution: fixed
2010-07-12 23:32:31rfkcreate