[issue14313] zipfile does not unpack files from archive (files extracted have zero length)

Amaury Forgeot d'Arc report at bugs.python.org
Thu Mar 15 09:57:54 CET 2012


Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:

This ZIP file uses a compression method unsupported by Python:
>>> z.getinfo('19A7B5A4.PKT').compress_type
6
which corresponds to "Imploded". Only "Stored" and "Deflated" are supported.

Note that previous versions don't work either: they just happen to return the compressed data.

----------
nosy: +amaury.forgeotdarc
stage:  -> needs patch

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14313>
_______________________________________


More information about the Python-bugs-list mailing list