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 fidoman
Recipients fidoman
Date 2012-03-15.04:35:34
SpamBayes Score 0.00993704
Marked as misclassified No
Message-id <1331786135.76.0.307574406169.issue14313@psf.upfronthosting.co.za>
In-reply-to
Content
unzip does extract files but zipfile no
works fine with python2.7 but fails with python 3.2.2
tested on solaris 11 express and windows xp

>>> import zipfile
>>> zipfile.ZipFile("test.zip")
<zipfile.ZipFile object at 0x903e50>
>>> z=_
>>> z.namelist
<bound method ZipFile.namelist of <zipfile.ZipFile object at 0x903e50>>
>>> z.namelist()
['19A7B5A4.PKT']
>>> z.read('19A7B5A4.PKT')
b''
History
Date User Action Args
2012-03-15 04:35:35fidomansetrecipients: + fidoman
2012-03-15 04:35:35fidomansetmessageid: <1331786135.76.0.307574406169.issue14313@psf.upfronthosting.co.za>
2012-03-15 04:35:35fidomanlinkissue14313 messages
2012-03-15 04:35:34fidomancreate