Charles-Francois Natali <[email protected]> added the comment:
2011/3/2 Eric Wolf <[email protected]>:
>
> Eric Wolf <[email protected]> added the comment:
>
> I just got confirmation that OSM is using pbzip2 to generate these files. So
> they are multi-stream. At least that gives a final answer but doesn't solve
> my problem.
>
At least on Unix, you can use this workaround:
- self.fp = bz2.BZ2File(filename,'rb',16384*64)
+ self.fp = os.popen('bzip2 -cd ' + filename)
It's ugly, not as portable, but it should work on any Unix with bzip2
installed (and supporting multi-stream files).
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue10900>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com