index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
tarfile.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #20243: TarFile no longer raise ReadError when opened in write mode.
Serhiy Storchaka
2014-01-18
1
-2/+6
*
Issue #20245: The open functions in the tarfile module now correctly handle e...
Serhiy Storchaka
2014-01-18
1
-7/+8
*
Issue #19936: Added executable bits or shebang lines to Python scripts which
Serhiy Storchaka
2014-01-16
1
-1/+0
*
#18705: fix a number of typos. Patch by Févry Thibault.
Ezio Melotti
2013-08-17
1
-1/+1
*
Issue #16601: Restarting iteration over tarfile no more continues from where
Serhiy Storchaka
2013-05-09
1
-5/+7
*
Issue #16477: Close tarfile internal handlers in case of exception.
Andrew Svetlov
2012-11-29
1
-7/+7
*
Issue #14160: TarFile.extractfile() failed to resolve symbolic links when
Lars Gustäbel
2012-04-24
1
-1/+1
*
Issue #13639: Accept unicode filenames in tarfile.open(mode="w|gz").
Lars Gustäbel
2011-12-21
1
-0/+2
*
Correctly detect bzip2 compressed streams with blocksizes other than 900k.
Lars Gustäbel
2011-12-06
1
-1/+1
*
Issue #12841: Fix tarfile extraction of non-existent uids/gids.
Lars Gustäbel
2011-09-05
1
-8/+2
*
Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with...
Senthil Kumaran
2011-07-28
1
-1/+1
*
Fix closes issue #12088 - fixes the tarfile.extractall issue when the
Senthil Kumaran
2011-05-17
1
-1/+3
*
Fix closes issue10761: tarfile.extractall failure when symlinked files are ...
Senthil Kumaran
2011-04-28
1
-0/+2
*
Merged revisions 85211 via svnmerge from
Lars Gustäbel
2010-10-04
1
-4/+4
*
Issue #8741: Fixed the TarFile.makelink() method that is responsible
Lars Gustäbel
2010-06-03
1
-26/+45
*
Issue #8833: tarfile created hard link entries with a size
Lars Gustäbel
2010-06-03
1
-1/+1
*
In a number of places code still revers
Ronald Oussoren
2010-05-05
1
-7/+0
*
Issue #8464: tarfile.open(name, mode="w|") no longer creates
Lars Gustäbel
2010-04-29
1
-1/+1
*
Issue #7232: Add support for the context manager protocol
Lars Gustäbel
2010-03-03
1
-0/+14
*
Issue #7357: No longer suppress fatal extraction errors by
Lars Gustäbel
2009-12-13
1
-1/+1
*
Issue #6123: Fix opening empty archives and files.
Lars Gustäbel
2009-11-22
1
-27/+60
*
Issue #7341: Close the internal file object in the TarFile
Lars Gustäbel
2009-11-18
1
-21/+27
*
Issue #6856: Add a filter keyword argument to TarFile.add().
Lars Gustäbel
2009-09-12
1
-6/+21
*
Issue #6054: Do not normalize stored pathnames.
Lars Gustäbel
2009-08-28
1
-29/+12
*
#4351: more appropriate DeprecationWarning stacklevels
Philip Jenvey
2009-05-08
1
-1/+2
*
Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop
Lars Gustäbel
2009-03-22
1
-5/+4
*
Issue #5341: Fix a variety of spelling errors.
Mark Dickinson
2009-02-21
1
-1/+1
*
Issue #4616: TarFile.utime(): Restore directory times on Windows.
Lars Gustäbel
2008-12-12
1
-4/+0
*
Remove a dict.has_key() and list.sort(cmp=) usage from tarfile to silence
Brett Cannon
2008-08-04
1
-2/+3
*
Issue #3039: Fix TarFileCompat.writestr() which always raised an
Lars Gustäbel
2008-08-02
1
-4/+7
*
Do not close external file objects passed to tarfile.open(mode='w:bz2')
Lars Gustäbel
2008-05-27
1
-1/+0
*
A stab in the dark attempt to fix the alpha/tru64 buildbot problem and add more
Gregory P. Smith
2008-03-25
1
-2/+2
*
Issue #2004: Use mode 0700 for temporary directories and default
Lars Gustäbel
2008-02-05
1
-9/+9
*
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
[next]