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 Paul
Recipients Paul, amaury.forgeotdarc, lambacck, segfault42
Date 2011-10-27.16:47:48
SpamBayes Score 3.5352562e-06
Marked as misclassified No
Message-id <1319734069.73.0.956477838041.issue6434@psf.upfronthosting.co.za>
In-reply-to
Content
This is a problem with python2.7 as well.  A change in struct between python2.6 and 2.7 raises an exception on overflow instead of silently allowing it.  This prevents zipping any file larger than 4.5G.  This exception concurs when writing the 32-bit headers (which are not used on large files anyway)

The patch should be simple.  Just wrap line 1100: 
...struct.pack("<LLL",...
with a try: except: to revert to the old behavior.   Alternatively, check if size is bigger than ZIP64_LIMIT and set to anything less than ZIP64_LIMIT.
History
Date User Action Args
2011-10-27 16:47:49Paulsetrecipients: + Paul, amaury.forgeotdarc, lambacck, segfault42
2011-10-27 16:47:49Paulsetmessageid: <1319734069.73.0.956477838041.issue6434@psf.upfronthosting.co.za>
2011-10-27 16:47:49Paullinkissue6434 messages
2011-10-27 16:47:48Paulcreate