]> granicus.if.org Git - python/commit
Patch #651621, approved by MvL.
authorJust van Rossum <just@letterror.com>
Thu, 12 Dec 2002 12:23:32 +0000 (12:23 +0000)
committerJust van Rossum <just@letterror.com>
Thu, 12 Dec 2002 12:23:32 +0000 (12:23 +0000)
commitb083cb3901fcb7487c04ad996148d1cf0aa32350
tree8a3558425da1c61b81a8f22ab7b0b98c2fe622cf
parent6c7e326eaaa2d814e0d299054f78e5bd187489ab
Patch #651621, approved by MvL.

This patch allows ZipFile.writestr() to be called with
an archive file name instead of a ZipInfo instance:

z = ZipFile("myarchive.zip", "w")
z.writestr("foo/baz/file.ext", data)
z.close()

I found the old writestr() method very inconvenient
for simple (but common) things.

If called with a file name instead of a ZipInfo
instance, the date_time is set to the current date/time,
which makes sense to me for anonymous data.
Doc/lib/libzipfile.tex
Lib/zipfile.py