summaryrefslogtreecommitdiff
path: root/Lib/tarfile.py
Commit message (Expand)AuthorAgeFilesLines
* #18705: fix a number of typos. Patch by F?vry Thibault.Ezio Melotti2013-08-171-1/+1
* Issue #16601: Restarting iteration over tarfile no more continues from whereSerhiy Storchaka2013-05-091-5/+7
* Merge issue #16477: Close tarfile internal handlers in case of exception.Andrew Svetlov2012-11-291-13/+11
|\
| * Issue #16477: Close tarfile internal handlers in case of exception.Andrew Svetlov2012-11-291-13/+11
* | Simplify usage of LZMAFile's fileobj support, like with BZ2File.Nadeem Vawda2012-06-041-2/+1
* | Make BZ2File's fileobj support easier to use.Nadeem Vawda2012-06-041-2/+2
* | Issue #13031: Small speed-up for tarfile when unzipping tarfiles.Ross Lagerwall2012-05-171-2/+2
* | #14807: move undocumented tarfile.filemode() to stat.filemode(). Add tarfile....Giampaolo Rodola'2012-05-151-41/+7
* | Issue #13815: Resurrect the ExFileObject class.Lars Gust?bel2012-05-141-8/+9
* | Issue #13815: TarFile.extractfile() now returns io.BufferedReader objects.Lars Gust?bel2012-05-051-154/+42
* | Merge with 3.2: Issue #14160: TarFile.extractfile() failed to resolve symbolicLars Gust?bel2012-04-241-1/+1
|\ \ | |/
| * Issue #14160: TarFile.extractfile() failed to resolve symbolic linksLars Gust?bel2012-04-241-1/+1
* | Issue #5689: Avoid excessive memory usage by using the default lzma preset.Lars Gustäbel2012-01-181-5/+1
* | Merge from 3.2: Issue #12926: Fix a bug in tarfile's link extraction.Lars Gustäbel2012-01-051-6/+0
|\ \ | |/
| * Issue #12926: Fix a bug in tarfile's link extraction.Lars Gustäbel2012-01-051-6/+0
* | use io.SEEK_* constants instead of os.SEEK_* where an IO stream is seeked, le...Eli Bendersky2012-01-031-4/+5
* | Issue #5689: Add support for lzma compression to the tarfile module.Lars Gustäbel2011-12-101-6/+60
* | Remove no longer needed work-around for bz2 file object support.Lars Gustäbel2011-12-061-64/+2
* | Merge with 3.2: Correctly detect bzip2 compressed streams with blocksizes oth...Lars Gustäbel2011-12-061-15/+11
|\ \ | |/ |/|
| * Simplify and remove few dependencies on 'errno', thanks to PEP 3151.Florent Xicluna2011-10-281-4/+2
| * Merge with 3.2: Issue #13158: Fix decoding and encoding of base-256 number fi...Lars Gustäbel2011-10-141-11/+9
| |\
| | * Merge with 3.2: Issue #12841: Fix tarfile extraction of non-existent uids/gids.Lars Gustäbel2011-09-051-8/+2
| | |\
| | * \ Merge with 3.2.Georg Brandl2011-08-131-11/+9
| | |\ \
| | | * \ merge from 3.2 - Fix closes Issue11439 Remove the SVN keywords from the code ...Senthil Kumaran2011-07-281-2/+2
| | | |\ \
| | | * | | remove __version__s dependent on subversion keyword expansion (closes #12221)Benjamin Peterson2011-05-311-2/+0
| | | * | | Normalize the encoding names for Latin-1 and UTF-8 toMarc-André Lemburg2011-02-251-9/+9
| | | * | | Issue #11224: Improved sparse file read support (r85916) introduced aLars Gustäbel2011-02-231-3/+2
* | | | | | Correctly detect bzip2 compressed streams with blocksizes other than 900k.Lars Gustäbel2011-12-061-1/+1
|/ / / / /
* | | | | Issue #13158: Fix decoding and encoding of base-256 number fields in tarfile.Lars Gustäbel2011-10-141-20/+23
| |_|_|/ |/| | |
* | | | Issue #12841: Fix tarfile extraction of non-existent uids/gids.Lars Gustäbel2011-09-051-8/+2
|/ / /
* | | Fix #11513: wrong exception handling for the case that GzipFile itself raises...Georg Brandl2011-08-131-2/+4
| |/ |/|
* | Fix closes Issue11439 Remove the SVN keywords from the code as it is no longe...Senthil Kumaran2011-07-281-2/+2
* | Merged revisions 88528 via svnmerge fromLars Gustäbel2011-02-231-3/+2
|/
* Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into aRaymond Hettinger2011-01-261-2/+2
* Issue #10184: Touch directories only once when extracting a tarfile.Martin v. Löwis2010-11-011-9/+13
* Issue #10233: Close file objects in a timely manner in the tarfile moduleAntoine Pitrou2010-10-291-9/+7
* Add read support for all missing variants of the GNU sparseLars Gustäbel2010-10-291-119/+112
* Issue #9065: no longer use "root" as the default for theLars Gustäbel2010-10-041-4/+4
* Fix a line that got hacked up by r82659.Brian Curtin2010-09-241-1/+2
* Further tarfile / test_tarfile cleanupAntoine Pitrou2010-09-231-24/+33
* Try to fix test_tarfile issues on Windows buildbots by closing fileAntoine Pitrou2010-09-231-1/+7
* Fix the breakage of Lib/tarfile.py on non-Windows platforms due toBrian Curtin2010-07-091-6/+14
* Implement #1578269. Patch by Jason R. Coombs.Brian Curtin2010-07-081-2/+10
* Issue #8784: Set tarfile default encoding to 'utf-8' on Windows.Victor Stinner2010-06-111-3/+4
* Merged revisions 81667 via svnmerge fromLars Gustäbel2010-06-031-26/+45
* Merged revisions 81663 via svnmerge fromLars Gustäbel2010-06-031-1/+1
* Issue #8633: Support for POSIX.1-2008 binary pax headers.Lars Gustäbel2010-05-171-10/+72
* Issue #8390: tarfile uses surrogateespace as the default error handlerVictor Stinner2010-05-051-9/+3
* Remove traces of MacOS9 support.Ronald Oussoren2010-05-051-7/+0
* Merged revisions 80616 via svnmerge fromLars Gustäbel2010-04-291-1/+1