| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #1735: TarFile.extractall() now correctly sets | Lars Gustäbel | 2008-01-04 | 1 | -4/+4 |
|
|
* | Issue #1531: Read fileobj from the current offset, do not seek to | Lars Gustäbel | 2007-12-01 | 1 | -1/+2 |
|
|
* | TarFile.__init__() no longer fails if no name argument is passed and | Lars Gustäbel | 2007-08-28 | 1 | -1/+1 |
|
|
* | Added exclude keyword argument to the TarFile.add() method. | Lars Gustäbel | 2007-06-18 | 1 | -4/+10 |
|
|
* | Added errors argument to TarFile class that allows the user to | Lars Gustäbel | 2007-05-27 | 1 | -101/+134 |
|
|
* | Remove direct call's to file's constructor and replace them with calls to | Brett Cannon | 2007-05-25 | 1 | -4/+5 |
|
|
* | This is the implementation of POSIX.1-2001 (pax) format read/write | Lars Gustäbel | 2007-03-13 | 1 | -334/+646 |
|
|
* | Patch #1652681: create nonexistent files in append mode and | Lars Gustäbel | 2007-02-06 | 1 | -2/+7 |
|
|
* | Patch #1507247: tarfile.py: use current umask for intermediate | Lars Gustäbel | 2007-01-23 | 1 | -13/+1 |
|
|
* | Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. | Lars Gustäbel | 2006-12-27 | 1 | -0/+4 |
|
|
* | Patch #1262036: Prevent TarFiles from being added to themselves under | Lars Gustäbel | 2006-12-23 | 1 | -27/+6 |
|
|
* | Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() | Lars Gustäbel | 2006-12-23 | 1 | -106/+153 |
|
|
* | Testcase for patch #1484695. | Georg Brandl | 2006-12-20 | 1 | -6/+5 |
|
|
* | Patch #1484695: The tarfile module now raises a HeaderError exception | Georg Brandl | 2006-12-19 | 1 | -10/+17 |
|
|
* | Patch #1610437: fix a tarfile bug with long filename headers. | Georg Brandl | 2006-12-06 | 1 | -2/+6 |
|
|
* | Patch #1583880: fix tarfile's problems with long names and posix/ | Georg Brandl | 2006-10-29 | 1 | -88/+81 |
|
|
* | Patch [ 1583506 ] tarfile.py: 100-char filenames are truncated | Georg Brandl | 2006-10-24 | 1 | -1/+1 |
|
|
* | Fix tarfile depending on buggy int('1\0', base) behavior. | Georg Brandl | 2006-10-12 | 1 | -1/+1 |
|
|
* | Fix bug #1543303, tarfile adds padding that breaks gunzip. | Neal Norwitz | 2006-08-21 | 1 | -3/+0 |
|
|
* | _Stream.close(): Try to kill struct.pack() warnings when | Tim Peters | 2006-08-02 | 1 | -1/+7 |
|
|
* | Part of SF patch #1484695. This removes dead code. The chksum was | Neal Norwitz | 2006-07-10 | 1 | -7/+0 |
|
|
* | Always close BZ2Proxy object. Remove unnecessary struct usage. | Georg Brandl | 2006-05-27 | 1 | -13/+10 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-19 | 1 | -1/+1 |
|
|
* | Amendments to patch #1484695. | Georg Brandl | 2006-05-18 | 1 | -45/+52 |
|
|
* | [ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634) | Georg Brandl | 2006-05-15 | 1 | -2/+67 |
|
|
* | Patch #1484695: Update the tarfile module to version 0.8. This fixes | Georg Brandl | 2006-05-10 | 1 | -180/+200 |
|
|
* | Patch #1338314, Bug #1336623: fix tarfile so it can extract | Neal Norwitz | 2005-10-28 | 1 | -5/+6 |
|
|
* | Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer) | Neal Norwitz | 2005-10-20 | 1 | -1/+2 |
|
|
* | Minor cleanup. | Raymond Hettinger | 2005-09-11 | 1 | -2/+1 |
|
|
* | Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128. | Martin v. Löwis | 2005-08-27 | 1 | -14/+12 |
|
|
* | Revert previous checkin. | Martin v. Löwis | 2005-08-24 | 1 | -7/+20 |
|
|
* | Patch #1262036: Make tarfile name absolute. Fixes #1257255. | Martin v. Löwis | 2005-08-24 | 1 | -20/+7 |
|
|
* | Fix all wrong instances of "it's". | Georg Brandl | 2005-07-22 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-03-28 | 1 | -1/+1 |
|
|
* | Patch #918101: Add tarfile open mode r|* for auto-detection of the | Martin v. Löwis | 2005-03-05 | 1 | -30/+66 |
|
|
* | Patch #1043890: tarfile: add extractall() method. | Martin v. Löwis | 2005-03-04 | 1 | -0/+41 |
|
|
* | Patch #1103407: Properly deal with tarfile iterators when untarring | Martin v. Löwis | 2005-03-03 | 1 | -4/+15 |
|
|
* | Patch #1107973: tarfile.ExFileObject iterators. | Martin v. Löwis | 2005-03-03 | 1 | -0/+16 |
|
|
* | Use decorators. | Guido van Rossum | 2005-01-16 | 1 | -10/+5 |
|
|
* | Use cStringIO where available. | Raymond Hettinger | 2004-12-31 | 1 | -2/+5 |
|
|
* | [Patch #1043972, for bug #1017553] filemode() returns an incorrect value for ... | Andrew M. Kuchling | 2004-10-20 | 1 | -27/+34 |
|
|
* | Patch #1029061: Always extract member names from the tarinfo. | Martin v. Löwis | 2004-09-18 | 1 | -25/+16 |
|
|
* | Patch #1014992: Never return more than a line from readline. | Martin v. Löwis | 2004-08-25 | 1 | -3/+1 |
|
|
* | Flush bz2 data even if nothing had been written so far. Fixes #1013882. | Martin v. Löwis | 2004-08-22 | 1 | -2/+2 |
|
|
* | Replace tricky and/or with straight-forward if:else: | Martin v. Löwis | 2004-08-20 | 1 | -1/+5 |
|
|
* | Patch #995126: Correct directory size, and generate GNU tarfiles by default. | Martin v. Löwis | 2004-08-18 | 1 | -2/+2 |
|
|
* | Remove unused variables | Neal Norwitz | 2004-07-20 | 1 | -2/+0 |
|
|
* | SF #918101, allow files >= 8 GB using GNU extension | Neal Norwitz | 2004-07-20 | 1 | -6/+32 |
|
|
* | SF #857297 and 916874, improve handling of hard links when extracting | Neal Norwitz | 2004-07-20 | 1 | -1/+6 |
|
|
* | SF #846659, fix bufsize violation and GNU longname/longlink extensions | Neal Norwitz | 2004-07-20 | 1 | -1/+3 |
|
|