1. 5396257 Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar by Serhiy Storchaka · 8 years ago
  2. 59b9a16 Issues #22468, #21996, #22208: Clarify gettarinfo() and TarInfo usage by Martin Panter · 9 years ago
  3. 518602a Issue #24259: tarfile now raises a ReadError if an archive is truncated inside a data segment. by Lars Gustäbel · 9 years ago
  4. d048003 Issue #24514: tarfile now tolerates number fields consisting of only whitespace. by Lars Gustäbel · 9 years ago
  5. 1aa2c0f Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 10 years ago
  6. 205408d Issue #23615: Module tarfile is now can be reloaded with imp.reload(). by Serhiy Storchaka · 10 years ago
  7. 7fd59e0 properly handle file closing in error cases (closes #22266) by Benjamin Peterson · 10 years ago
  8. 7cc3b0a Backout 308f3c1e36d3. This change (issue21044) does not need to be merged on by Serhiy Storchaka · 10 years ago
  9. e7829bd Issue 21044: tarfile.open() now handles fileobj with an integer 'name' by Serhiy Storchaka · 10 years ago
  10. 7a278da Issue #20243: TarFile no longer raise ReadError when opened in write mode. by Serhiy Storchaka · 11 years ago
  11. 75ba21a Issue #20245: The open functions in the tarfile module now correctly handle empty mode. by Serhiy Storchaka · 11 years ago
  12. e0ed2d7 Issue #19936: Added executable bits or shebang lines to Python scripts which by Serhiy Storchaka · 11 years ago
  13. f5469cf #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  14. ce34ba6 Issue #16601: Restarting iteration over tarfile no more continues from where by Serhiy Storchaka · 11 years ago
  15. ac26a2e Issue #16477: Close tarfile internal handlers in case of exception. by Andrew Svetlov · 12 years ago
  16. 231d474 Issue #14160: TarFile.extractfile() failed to resolve symbolic links when by Lars Gustäbel · 13 years ago
  17. 7d4d074 Issue #13639: Accept unicode filenames in tarfile.open(mode="w|gz"). by Lars Gustäbel · 13 years ago
  18. 9a38863 Correctly detect bzip2 compressed streams with blocksizes other than 900k. by Lars Gustäbel · 13 years ago
  19. 8babfdf Issue #12841: Fix tarfile extraction of non-existent uids/gids. by Lars Gustäbel · 13 years ago
  20. 4af1c6a Fix closes Issue11439 - Handle the SVN Keywords in 2.7 by replacing them with a high number so that code relying on them does not break. by Senthil Kumaran · 13 years ago
  21. 4dd89ce Fix closes issue #12088 - fixes the tarfile.extractall issue when the by Senthil Kumaran · 13 years ago
  22. 011525e Fix closes issue10761: tarfile.extractall failure when symlinked files are present. by Senthil Kumaran · 14 years ago
  23. 6aab8d0 Merged revisions 85211 via svnmerge from by Lars Gustäbel · 14 years ago
  24. 4da7d41 Issue #8741: Fixed the TarFile.makelink() method that is responsible by Lars Gustäbel · 14 years ago
  25. 2ee9c6f Issue #8833: tarfile created hard link entries with a size by Lars Gustäbel · 14 years ago
  26. 9545a23 In a number of places code still revers by Ronald Oussoren · 14 years ago
  27. 5c4c461 Issue #8464: tarfile.open(name, mode="w|") no longer creates by Lars Gustäbel · 15 years ago
  28. 6458104 Issue #7232: Add support for the context manager protocol to the TarFile class. by Lars Gustäbel · 15 years ago
  29. 92ca756 Issue #7357: No longer suppress fatal extraction errors by default. by Lars Gustäbel · 15 years ago
  30. dd866d5 Issue #6123: Fix opening empty archives and files. by Lars Gustäbel · 15 years ago
  31. 355538e Issue #7341: Close the internal file object in the TarFile by Lars Gustäbel · 15 years ago
  32. 21121e6 Issue #6856: Add a filter keyword argument to TarFile.add(). by Lars Gustäbel · 15 years ago
  33. f7cda52 Issue #6054: Do not normalize stored pathnames. by Lars Gustäbel · 15 years ago
  34. d846f1d #4351: more appropriate DeprecationWarning stacklevels by Philip Jenvey · 15 years ago
  35. 2020a59 Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop by Lars Gustäbel · 16 years ago
  36. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  37. 3b02742 Issue #4616: TarFile.utime(): Restore directory times on Windows. by Lars Gustäbel · 16 years ago
  38. 132fc54 Remove a dict.has_key() and list.sort(cmp=) usage from tarfile to silence by Brett Cannon · 16 years ago
  39. 727bd0b Issue #3039: Fix TarFileCompat.writestr() which always raised an by Lars Gustäbel · 16 years ago
  40. b1a54a3 Do not close external file objects passed to tarfile.open(mode='w:bz2') by Lars Gustäbel · 16 years ago
  41. 8844096 A stab in the dark attempt to fix the alpha/tru64 buildbot problem and add more by Gregory P. Smith · 17 years ago
  42. 0192e43 Issue #2004: Use mode 0700 for temporary directories and default by Lars Gustäbel · 17 years ago
  43. 2ee1c76 Issue #1735: TarFile.extractall() now correctly sets by Lars Gustäbel · 17 years ago
  44. 77b2d63 Issue #1531: Read fileobj from the current offset, do not seek to the start. by Lars Gustäbel · 17 years ago
  45. 0f4a14b TarFile.__init__() no longer fails if no name argument is passed and by Lars Gustäbel · 17 years ago
  46. 104490e Added exclude keyword argument to the TarFile.add() method. by Lars Gustäbel · 17 years ago
  47. a0fcb93 Added errors argument to TarFile class that allows the user to by Lars Gustäbel · 17 years ago
  48. 6cef076 Remove direct call's to file's constructor and replace them with calls to by Brett Cannon · 17 years ago
  49. c64e402 This is the implementation of POSIX.1-2001 (pax) format read/write support. by Lars Gustäbel · 18 years ago
  50. 3f8aca1 Patch #1652681: create nonexistent files in append mode and by Lars Gustäbel · 18 years ago
  51. d2e2290 Patch #1507247: tarfile.py: use current umask for intermediate directories. by Lars Gustäbel · 18 years ago
  52. a7ba6fc Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. by Lars Gustäbel · 18 years ago
  53. a4b2381 Patch #1262036: Prevent TarFiles from being added to themselves under by Lars Gustäbel · 18 years ago
  54. 6baa502 Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() by Lars Gustäbel · 18 years ago
  55. ded1c4d Testcase for patch #1484695. by Georg Brandl · 18 years ago
  56. ebbeed7 Patch #1484695: The tarfile module now raises a HeaderError exception by Georg Brandl · 18 years ago
  57. 87fa559 Patch #1610437: fix a tarfile bug with long filename headers. by Georg Brandl · 18 years ago
  58. 3354f28 Patch #1583880: fix tarfile's problems with long names and posix/ GNU modes. by Georg Brandl · 18 years ago
  59. a32e0a0 Patch [ 1583506 ] tarfile.py: 100-char filenames are truncated by Georg Brandl · 18 years ago
  60. 3520771 Fix tarfile depending on buggy int('1\0', base) behavior. by Georg Brandl · 18 years ago
  61. 8a51939 Fix bug #1543303, tarfile adds padding that breaks gunzip. Patch # 1543897. by Neal Norwitz · 18 years ago
  62. a05f6e2 _Stream.close(): Try to kill struct.pack() warnings when by Tim Peters · 18 years ago
  63. 4a5fbda Part of SF patch #1484695. This removes dead code. The chksum was by Neal Norwitz · 18 years ago
  64. e895318 Always close BZ2Proxy object. Remove unnecessary struct usage. by Georg Brandl · 18 years ago
  65. 8a299d2 Whitespace normalization. by Tim Peters · 18 years ago
  66. e4751e3 Amendments to patch #1484695. by Georg Brandl · 18 years ago
  67. 49c8f4c [ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634) by Georg Brandl · 18 years ago
  68. 38c6a22 Patch #1484695: Update the tarfile module to version 0.8. This fixes by Georg Brandl · 18 years ago
  69. f339654 Patch #1338314, Bug #1336623: fix tarfile so it can extract by Neal Norwitz · 19 years ago
  70. b0e32e2 Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer) by Neal Norwitz · 19 years ago
  71. a1d09e2 Minor cleanup. by Raymond Hettinger · 19 years ago
  72. 5dbdc59 Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128. by Martin v. Löwis · 19 years ago
  73. faffa15 Revert previous checkin. by Martin v. Löwis · 19 years ago
  74. bc3b060 Patch #1262036: Make tarfile name absolute. Fixes #1257255. by Martin v. Löwis · 19 years ago
  75. 7eb4b7d Fix all wrong instances of "it's". by Georg Brandl · 19 years ago
  76. eba28be Whitespace normalization. by Tim Peters · 20 years ago
  77. 78be7df Patch #918101: Add tarfile open mode r|* for auto-detection of the by Martin v. Löwis · 20 years ago
  78. 00a73e7 Patch #1043890: tarfile: add extractall() method. by Martin v. Löwis · 20 years ago
  79. 637431b Patch #1103407: Properly deal with tarfile iterators when untarring by Martin v. Löwis · 20 years ago
  80. df24153 Patch #1107973: tarfile.ExFileObject iterators. by Martin v. Löwis · 20 years ago
  81. 75b64e6 Use decorators. by Guido van Rossum · 20 years ago
  82. a617271 Use cStringIO where available. by Raymond Hettinger · 20 years ago
  83. 8bc462f [Patch #1043972, for bug #1017553] filemode() returns an incorrect value for the mode 07111 by Andrew M. Kuchling · 20 years ago
  84. f3c5611 Patch #1029061: Always extract member names from the tarinfo. by Martin v. Löwis · 20 years ago
  85. c11d6f1 Patch #1014992: Never return more than a line from readline. by Martin v. Löwis · 20 years ago
  86. c234a52 Flush bz2 data even if nothing had been written so far. Fixes #1013882. by Martin v. Löwis · 20 years ago
  87. 61d77e0 Replace tricky and/or with straight-forward if:else: by Martin v. Löwis · 20 years ago
  88. 75b9da4 Patch #995126: Correct directory size, and generate GNU tarfiles by default. by Martin v. Löwis · 20 years ago
  89. 0260519 Remove unused variables by Neal Norwitz · 20 years ago
  90. d96d101 SF #918101, allow files >= 8 GB using GNU extension by Neal Norwitz · 20 years ago
  91. a4f651a SF #857297 and 916874, improve handling of hard links when extracting by Neal Norwitz · 20 years ago
  92. 0662f8a SF #846659, fix bufsize violation and GNU longname/longlink extensions by Neal Norwitz · 20 years ago
  93. 864bba1 [Patch 988444] by Andrew M. Kuchling · 20 years ago
  94. 6e4f7a8 [Bug #812325 ] tarfile.close() can write out more bytes to the output by Andrew M. Kuchling · 21 years ago
  95. 10a4449 [Bug #822668] tarfile raises an exception if the tarfile is gzipped and is too large; the gzip filesize should be written out mod 2**32. (Reported by Johan Fredrik Ohman) by Andrew M. Kuchling · 21 years ago
  96. 2b4b5a5 Fix by Lars Gustaebel for bug 721871: don't get upset if the prefix by Jack Jansen · 22 years ago
  97. 4ec6824 Fix test_tarfile failure when gzip is not available by Neal Norwitz · 22 years ago
  98. f934778 Somebody must not have run the test before checking this in -- it had by Tim Peters · 22 years ago
  99. cfc4902 Make tarfile raise ImportError on MacOS9. The pathname handling needs work, and I don't have time to fix it. I'll file a bug report. by Jack Jansen · 22 years ago
  100. 834eff6 Test that os.utime and os.chmod actually exist before using them. by Jack Jansen · 22 years ago