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 anthonybaxter
Recipients
Date 2003-02-10.13:26:34
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
zipfile.ZipFile() should have an interface similar to
tarfile.TarFile() for extracting files. At it's
simplest, this can
be written:

tf = tarfile.open(self.filename, 'r')
for member in tf.getmembers():
     tf.extract(member)

This does "all the right things". This is a much more
pleasant
interface to use than the ZipFile equivalent.

Assigning to self as a reminder to do this.
History
Date User Action Args
2007-08-23 16:06:18adminlinkissue683910 messages
2007-08-23 16:06:18admincreate