summaryrefslogtreecommitdiffstats
path: root/Lib/tarfile.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loopLars Gustäbel2009-03-221-5/+4
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-1/+1
* Issue #4616: TarFile.utime(): Restore directory times on Windows.Lars Gustäbel2008-12-121-4/+0
* Remove a dict.has_key() and list.sort(cmp=) usage from tarfile to silenceBrett Cannon2008-08-041-2/+3
* Issue #3039: Fix TarFileCompat.writestr() which always raised anLars Gustäbel2008-08-021-4/+7
* Do not close external file objects passed to tarfile.open(mode='w:bz2')Lars Gustäbel2008-05-271-1/+0
* A stab in the dark attempt to fix the alpha/tru64 buildbot problem and add moreGregory P. Smith2008-03-251-2/+2
* Issue #2004: Use mode 0700 for temporary directories and defaultLars Gustäbel2008-02-051-9/+9
* Issue #1735: TarFile.extractall() now correctly setsLars Gustäbel2008-01-041-4/+4
* Issue #1531: Read fileobj from the current offset, do not seek toLars Gustäbel2007-12-011-1/+2
* TarFile.__init__() no longer fails if no name argument is passed andLars Gustäbel2007-08-281-1/+1
* Added exclude keyword argument to the TarFile.add() method.Lars Gustäbel2007-06-181-4/+10
* Added errors argument to TarFile class that allows the user toLars Gustäbel2007-05-271-101/+134
* Remove direct call's to file's constructor and replace them with calls toBrett Cannon2007-05-251-4/+5
* This is the implementation of POSIX.1-2001 (pax) format read/writeLars Gustäbel2007-03-131-334/+646
* Patch #1652681: create nonexistent files in append mode andLars Gustäbel2007-02-061-2/+7
* Patch #1507247: tarfile.py: use current umask for intermediateLars Gustäbel2007-01-231-13/+1
* Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument.Lars Gustäbel2006-12-271-0/+4
* Patch #1262036: Prevent TarFiles from being added to themselves underLars Gustäbel2006-12-231-27/+6
* Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell()Lars Gustäbel2006-12-231-106/+153
* Testcase for patch #1484695.Georg Brandl2006-12-201-6/+5
* Patch #1484695: The tarfile module now raises a HeaderError exceptionGeorg Brandl2006-12-191-10/+17
* Patch #1610437: fix a tarfile bug with long filename headers.Georg Brandl2006-12-061-2/+6
* Patch #1583880: fix tarfile's problems with long names and posix/Georg Brandl2006-10-291-88/+81
* Patch [ 1583506 ] tarfile.py: 100-char filenames are truncatedGeorg Brandl2006-10-241-1/+1
* Fix tarfile depending on buggy int('1\0', base) behavior.Georg Brandl2006-10-121-1/+1
* Fix bug #1543303, tarfile adds padding that breaks gunzip.Neal Norwitz2006-08-211-3/+0
* _Stream.close(): Try to kill struct.pack() warnings whenTim Peters2006-08-021-1/+7
* Part of SF patch #1484695. This removes dead code. The chksum wasNeal Norwitz2006-07-101-7/+0
* Always close BZ2Proxy object. Remove unnecessary struct usage.Georg Brandl2006-05-271-13/+10
* Whitespace normalization.Tim Peters2006-05-191-1/+1
* Amendments to patch #1484695.Georg Brandl2006-05-181-45/+52
* [ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634)Georg Brandl2006-05-151-2/+67
* Patch #1484695: Update the tarfile module to version 0.8. This fixesGeorg Brandl2006-05-101-180/+200
* Patch #1338314, Bug #1336623: fix tarfile so it can extractNeal Norwitz2005-10-281-5/+6
* Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer)Neal Norwitz2005-10-201-1/+2
* Minor cleanup.Raymond Hettinger2005-09-111-2/+1
* Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128.Martin v. Löwis2005-08-271-14/+12
* Revert previous checkin.Martin v. Löwis2005-08-241-7/+20
* Patch #1262036: Make tarfile name absolute. Fixes #1257255.Martin v. Löwis2005-08-241-20/+7
* Fix all wrong instances of "it's".Georg Brandl2005-07-221-1/+1
* Whitespace normalization.Tim Peters2005-03-281-1/+1
* Patch #918101: Add tarfile open mode r|* for auto-detection of theMartin v. Löwis2005-03-051-30/+66
* Patch #1043890: tarfile: add extractall() method.Martin v. Löwis2005-03-041-0/+41
* Patch #1103407: Properly deal with tarfile iterators when untarringMartin v. Löwis2005-03-031-4/+15
* Patch #1107973: tarfile.ExFileObject iterators.Martin v. Löwis2005-03-031-0/+16
* Use decorators.Guido van Rossum2005-01-161-10/+5
* Use cStringIO where available.Raymond Hettinger2004-12-311-2/+5
* [Patch #1043972, for bug #1017553] filemode() returns an incorrect value for ...Andrew M. Kuchling2004-10-201-27/+34
* Patch #1029061: Always extract member names from the tarinfo.Martin v. Löwis2004-09-181-25/+16