Re: [Pythonmac-SIG] tarfile fails silently on 10.4?

2007-01-20 Thread Ronald Oussoren
On 20 Jan, 2007, at 15:33, Nir Soffer wrote: I used to use tarfile on 10.3 to extract a bz2 compressed tarball. I tried the code today on 10.4, and untaring fail silently after about 5% of tarball content, without any error. This is the failing code: tar = tarfile.open(os.path.join(S

[Pythonmac-SIG] tarfile fails silently on 10.4?

2007-01-20 Thread Nir Soffer
I used to use tarfile on 10.3 to extract a bz2 compressed tarball. I tried the code today on 10.4, and untaring fail silently after about 5% of tarball content, without any error. This is the failing code: tar = tarfile.open(os.path.join(SHARE, 'underlay.tar.bz2'), mode='r:bz2')