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 ivb
Recipients ivb
Date 2009-05-22.16:50:58
SpamBayes Score 7.316147e-08
Marked as misclassified No
Message-id <1243011059.87.0.0917631314165.issue6090@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit 
(Intel)] on win32
IDLE 2.6.2      
>>> import zipfile
>>> new = zipfile.ZipFile('C:\\x', 'w', zipfile.ZIP_DEFLATED)
>>> zi = zipfile.ZipInfo('test',(1,2,3,4,5,6))
>>> new.writestr(zi,'fgh')

Warning (from warnings module):
  File "H:\programs\python\lib\zipfile.py", line 1105
    self.fp.write(zinfo.FileHeader())
DeprecationWarning: struct integer overflow masking is deprecated

Warning (from warnings module):
  File "H:\programs\python\lib\zipfile.py", line 1105
    self.fp.write(zinfo.FileHeader())
DeprecationWarning: 'H' format requires 0 <= number <= 65535
>>>
History
Date User Action Args
2009-05-22 16:50:59ivbsetrecipients: + ivb
2009-05-22 16:50:59ivbsetmessageid: <1243011059.87.0.0917631314165.issue6090@psf.upfronthosting.co.za>
2009-05-22 16:50:58ivblinkissue6090 messages
2009-05-22 16:50:58ivbcreate