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 craigds
Recipients alanmcintyre, craigds, eric.araujo
Date 2010-09-03.21:47:12
SpamBayes Score 1.8503533e-09
Marked as misclassified No
Message-id <1283550434.76.0.674631772134.issue9720@psf.upfronthosting.co.za>
In-reply-to
Content
Yes, the bug still exists in Python 3.1.2. However, struct.pack() no longer silently ignores overflow, so I get this error instead:


>>> z.write('foo.txt')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib/python3.1/zipfile.py", line 1095, in write
    zinfo.file_size))
struct.error: argument out of range
History
Date User Action Args
2010-09-03 21:47:14craigdssetrecipients: + craigds, alanmcintyre, eric.araujo
2010-09-03 21:47:14craigdssetmessageid: <1283550434.76.0.674631772134.issue9720@psf.upfronthosting.co.za>
2010-09-03 21:47:12craigdslinkissue9720 messages
2010-09-03 21:47:12craigdscreate