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 donmez
Recipients donmez
Date 2008-01-01.22:55:34
SpamBayes Score 0.0075284815
Marked as misclassified No
Message-id <1199228135.83.0.661994029416.issue1718@psf.upfronthosting.co.za>
In-reply-to
Content
Running python 2.5 maintainance branch,

Test code is :

import tarfile

f = file(r"nss-3.12_alpha2.tar.bz2", "rb")
tar = tarfile.open(fileobj=f, mode="r|bz2")
try:
        for m in tar:
                tar.extract(m)
finally:
        tar.close()
        f.close()

You can get the file from
http://cekirdek.pardus.org.tr/~ismail/dist/nss-3.12_alpha2.tar.bz2 .

When the script finishes it only creates mozilla/security/nss directory,
if you extract with tar you will see that it also creates
mozilla/security/coreconf directory.

Tarfile created with 1.19 on Linux i686. I can reproduce the same
problem with tar.gz version of the same file.
History
Date User Action Args
2008-01-01 22:55:36donmezsetspambayes_score: 0.00752848 -> 0.0075284815
recipients: + donmez
2008-01-01 22:55:35donmezsetspambayes_score: 0.00752848 -> 0.00752848
messageid: <1199228135.83.0.661994029416.issue1718@psf.upfronthosting.co.za>
2008-01-01 22:55:35donmezlinkissue1718 messages
2008-01-01 22:55:34donmezcreate