Nadeem Vawda added the comment:

As far as I can tell, there is no way to find this out reliably without 
decompressing the entire file. With gzip, the file trailer contains the 
uncompressed size modulo 2^32, but this seems less than useful. It appears that 
the other two formats do not store the total uncompressed data size in any form.

For bz2 and lzma, one can get the uncompressed size by doing f.seek(0, 2) 
followed by f.tell(). However this approach is ugly and potentially very slow, 
so I would be reluctant to add a method based on it to the (BZ2|LZMA)File 
classes.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15955>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to