[issue9071] TarFile doesn't support member files with a leading "./"

2010-06-25 Thread Free Ekanayaka
Free Ekanayaka added the comment: Thanks for the prompt reply! Cool to know this is already fixed. -- ___ Python tracker <http://bugs.python.org/issue9

[issue9071] TarFile doesn't support member files with a leading "./"

2010-06-24 Thread Free Ekanayaka
New submission from Free Ekanayaka : The tar format allows to have memeber files whose path has a leading "./": $ echo > foo $ tar cf bar.tar ./foo $ tar tf bar.tar ./foo However the tarfile module doesn't allow this: >>> from StringIO import StringIO >>>