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 hravnx
Recipients hravnx
Date 2009-07-20.06:48:29
SpamBayes Score 9.0514324e-05
Marked as misclassified No
Message-id <1248072511.11.0.843825773543.issue6524@psf.upfronthosting.co.za>
In-reply-to
Content
When doing the following with python 2.6.2 on Windows Vista SP1:

>>> import tarfile
>>> tf = tarfile.TarFile("sometarfile.tar.bz2")

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    tf = tarfile.TarFile("sometarfile.tar.bz2")
  File "C:\Python26\lib\tarfile.py", line 1570, in __init__
    self.firstmember = self.next()
  File "C:\Python26\lib\tarfile.py", line 2322, in next
    raise ReadError(str(e))
ReadError: invalid header

This would, of course, suggest that the file was corrupted, but all 
archiving tools (tar, winrar and 7-zip) handle the file without 
problems. 

Also:

>>> tf = tarfile.TarFile("sometarfile.tar.bz2", "r:bz2")

Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    tf = tarfile.TarFile("e:/mono/mono-2.4.2.2.tar.bz2", "r:bz2")
  File "C:\Python26\lib\tarfile.py", line 1510, in __init__
    raise ValueError("mode must be 'r', 'a' or 'w'")
ValueError: mode must be 'r', 'a' or 'w'

which suggests that the compression support is not compiled into the 
tarfile module.
History
Date User Action Args
2009-07-20 06:48:31hravnxsetrecipients: + hravnx
2009-07-20 06:48:31hravnxsetmessageid: <1248072511.11.0.843825773543.issue6524@psf.upfronthosting.co.za>
2009-07-20 06:48:30hravnxlinkissue6524 messages
2009-07-20 06:48:29hravnxcreate