From e88749b47585b848ffc0cf40760526b937119474 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Fri, 26 Jun 2009 08:05:13 +0000 Subject: Merged revisions 73565 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r73565 | gregory.p.smith | 2009-06-26 00:50:21 -0700 (Fri, 26 Jun 2009) | 2 lines Fixes the last problem mentioned in issue1202. ........ Issue #1202: zipfile module would cause a struct.error when attempting to store files with a CRC32 > 2**31-1. (on trunk this was merely a warning, in the py3k branch this caused an exception so I'm treating this as a release blocker and merging it now) --- Lib/zipfile.py | 2 +- Misc/NEWS | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Lib/zipfile.py b/Lib/zipfile.py index 5f24187..de06d82 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py @@ -1132,7 +1132,7 @@ class ZipFile: self.fp.flush() if zinfo.flag_bits & 0x08: # Write CRC and file sizes after the file data - self.fp.write(struct.pack(" 2**31-1. + Extension Modules ----------------- -- cgit v0.12