1. eab3b3f bpo-39389: gzip: fix compression level metadata (GH-18077) by William Chargin · 4 years, 7 months ago
  2. a065232 bpo-28286: Deprecate opening GzipFile for writing implicitly. (GH-16417) by Serhiy Storchaka · 4 years, 9 months ago
  3. cf599f6 bpo-6584: Add a BadGzipFile exception to the gzip module. (GH-13022) by Zackery Spytz · 5 years ago
  4. 4f5a349 fix typo in gzip.py (GH-12928) by Maximilian Nöthe · 5 years ago
  5. 0e7497c bpo-34898: Add mtime parameter to gzip.compress(). (GH-9704) by guoci · 6 years ago
  6. 3e28eed bpo-34969: Add --fast, --best on the gzip CLI (GH-9833) by Stéphane Wirtel · 6 years ago
  7. e8bbc52 bpo-23596: Use argparse for the command line of gzip (GH-9781) by Stéphane Wirtel · 6 years ago
  8. 8c663fd Replace KB unit with KiB (#4293) by Victor Stinner · 7 years ago
  9. 03020cf Issue #28227: gzip now supports pathlib by Berker Peksag · 8 years ago
  10. 5f1a518 Use sequence repetition instead of bytes constructor with integer argument. by Serhiy Storchaka · 8 years ago
  11. 8f26565 Fix spelling (inital), grammar (may translates) in documentation, comments by Martin Panter · 8 years ago
  12. b82032f Issue #22341: Drop Python 2 workaround and document CRC initial value by Martin Panter · 9 years ago
  13. 2dbc6e6 Issue #23529: Limit the size of decompressed data when reading from by Antoine Pitrou · 9 years ago
  14. 2116b12 Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  15. 7e7a3db Issue #23865: close() methods in multiple modules now are idempotent and more by Serhiy Storchaka · 9 years ago
  16. bca63b3 Issue #23688: Added support of arbitrary bytes-like objects and avoided by Serhiy Storchaka · 9 years ago
  17. d4c2ac8 Issue #21560: An attempt to write a data of wrong type no longer cause by Serhiy Storchaka · 9 years ago
  18. e512729 Issue #20875: Merge from 3.3 by Ned Deily · 10 years ago
  19. 6120739 Issue #20875: Prevent possible gzip "'read' is not defined" NameError. by Ned Deily · 10 years ago
  20. ee1be99 Issue #19222: Add support for the 'x' mode to the gzip module. by Nadeem Vawda · 11 years ago
  21. 48e6a8c Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  22. 50254c5 Issue #18743: Fix references to non-existant "StringIO" module by Serhiy Storchaka · 11 years ago
  23. b3bd624 Back out patch for #1159051, which caused backwards compatibility problems. by Georg Brandl · 11 years ago
  24. ffcd339 Close #17666: Fix reading gzip files with an extra field. by Serhiy Storchaka · 11 years ago
  25. 7e69f00 Close #17666: Fix reading gzip files with an extra field. by Serhiy Storchaka · 11 years ago
  26. cc0172c Issue #1159051: GzipFile now raises EOFError when reading a corrupted file by Serhiy Storchaka · 12 years ago
  27. 57f9b7a Issue #1159051: GzipFile now raises EOFError when reading a corrupted file by Serhiy Storchaka · 12 years ago
  28. 7c3922f Issue #1159051: GzipFile now raises EOFError when reading a corrupted file by Serhiy Storchaka · 12 years ago
  29. fc6e8aa #15546: Fix GzipFile.peek()'s handling of pathological input data. by Serhiy Storchaka · 12 years ago
  30. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  31. 6ff262e Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  32. 19e568d Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  33. 2a021c8 Issue #15800: fix the closing of input / output files when gzip is used as a script. by Antoine Pitrou · 12 years ago
  34. ecc4757 Issue #15800: fix the closing of input / output files when gzip is used as a script. by Antoine Pitrou · 12 years ago
  35. 0435400 #15546: Also fix GzipFile.peek(). by Nadeem Vawda · 12 years ago
  36. 37d3ff1 #15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data. by Nadeem Vawda · 12 years ago
  37. 83a4dd3 Update GzipFile docstring to mention gzip.open()'s new text-mode support. by Nadeem Vawda · 12 years ago
  38. 10c8791 Fix GzipFile's handling of filenames given as bytes objects. by Nadeem Vawda · 12 years ago
  39. 103e811 Fix GzipFile's handling of filenames given as bytes objects. by Nadeem Vawda · 12 years ago
  40. 6872101 Add fileobj support to gzip.open(). by Nadeem Vawda · 12 years ago
  41. 7e12620 Closes #13989: Add support for text modes to gzip.open(). by Nadeem Vawda · 12 years ago
  42. be66af4 Clean up GzipFile mode string handling code. by Nadeem Vawda · 13 years ago
  43. d1a1071 Merge: #13989: Document that GzipFile does not support text mode. by Nadeem Vawda · 13 years ago
  44. 30d94b7 Issue #13989: Document that GzipFile does not support text mode. by Nadeem Vawda · 13 years ago
  45. 50a4d5d Merge: #13781: Fix GzipFile to work with os.fdopen()'d file objects. by Nadeem Vawda · 13 years ago
  46. 892b0b9 Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. by Nadeem Vawda · 13 years ago
  47. 5b5ee69 Remove dead code in gzip. by Nadeem Vawda · 13 years ago
  48. 4ec4b0c Issue #10791: Implement missing method GzipFile.read1(), allowing GzipFile by Antoine Pitrou · 13 years ago
  49. 9f1c1dc #10465: fix broken delegation in __getattr__ of _PaddedFile. by Georg Brandl · 14 years ago
  50. 7980eaa Issue #9759: GzipFile now raises ValueError when an operation is attempted by Antoine Pitrou · 14 years ago
  51. 7b998e9 GzipFile.peek improvements, suggested by Nir Aides. by Antoine Pitrou · 14 years ago
  52. c3ed2e7 Issue #9962: GzipFile now has the peek() method. by Antoine Pitrou · 14 years ago
  53. 7b96984 Issue #1675951: Allow GzipFile to work with unseekable file objects. by Antoine Pitrou · 14 years ago
  54. 79c5ef1 Issue #3488: Provide convenient shorthand functions `gzip.compress` by Antoine Pitrou · 14 years ago
  55. a9eb87a Merged revisions 80762 via svnmerge from by Mark Dickinson · 14 years ago
  56. 8e33fd7 Merged revisions 77472-77473 via svnmerge from by Antoine Pitrou · 15 years ago
  57. b1f8835 Merged revisions 77288 via svnmerge from by Antoine Pitrou · 15 years ago
  58. 77b338b Issue #4757: `zlib.compress` and other methods in the zlib module now by Antoine Pitrou · 15 years ago
  59. 1440df2 Merged revisions 75935 via svnmerge from by Lars Gustäbel · 15 years ago
  60. a394f2d #4351: more appropriate DeprecationWarning stacklevels by Philip Jenvey · 15 years ago
  61. 308705e Merged revisions 68484-68485 via svnmerge from by Antoine Pitrou · 16 years ago
  62. 42db3ef Merged revisions 68319 via svnmerge from by Antoine Pitrou · 16 years ago
  63. 9d625c2 Buglet: restore functioning of gzip as an executable when (de)compressing from stdin to stdout by Antoine Pitrou · 16 years ago
  64. b533e26 Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,63470,63483-63484,63496-63497,63499-63501,63530-63531,63540,63614 via svnmerge from by Georg Brandl · 16 years ago
  65. 1dc5400 Merged revisions 61820-61823 via svnmerge from by Christian Heimes · 16 years ago
  66. fe337bf Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,61761,61765-61767,61769,61773,61776-61778,61780-61783,61788,61793,61796,61807,61813 via svnmerge from by Christian Heimes · 16 years ago
  67. e25f35e Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 via svnmerge from by Christian Heimes · 16 years ago
  68. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  69. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  70. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  71. ead7056 Retouch my last change after a comment on style from Guido. by Lars Gustäbel · 17 years ago
  72. 5590d8c RFC 1952 requires the FNAME field to be Latin-1. Do not include by Lars Gustäbel · 17 years ago
  73. 5b1284d Fix gzip.py: Use bytes where 8bit strings have been used formerly. by Walter Dörwald · 17 years ago
  74. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  75. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  76. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  77. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  78. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  79. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  80. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  81. 01cb47b [Bug #1074261, patch #1074381] Restrict the size of chunks read from the file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin by Andrew M. Kuchling · 19 years ago
  82. eba28be Whitespace normalization. by Tim Peters · 19 years ago
  83. f2a8d63 Patch #1110248: SYNC_FLUSH the zlib buffer for GZipFile.flush. by Martin v. Löwis · 19 years ago
  84. 49667c2 Ack, removed useless import of os I just introduced. by Tim Peters · 20 years ago
  85. 5cfb05e Added a new fileno() method. ZODB's repozo.py wants this so it can by Tim Peters · 20 years ago
  86. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  87. edfb302 Fix error in exception message. by Brett Cannon · 21 years ago
  88. 64edd6a [Patch #654421 from Matthew Mueller] by Andrew M. Kuchling · 22 years ago
  89. 9288f95 Another round on SF patch 618135: gzip.py and files > 2G by Tim Peters · 22 years ago
  90. fb0ea52 Related to SF patch 618135: gzip.py and files > 2G. by Tim Peters · 22 years ago
  91. 97c5fcc Remove mention of deprecated xreadlines method. by Guido van Rossum · 22 years ago
  92. aef22fb Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were not updated after 2.2). by Raymond Hettinger · 22 years ago
  93. 12424bc force gzip module to open files using 'b'inary mode. closes patch #536278. by Skip Montanaro · 22 years ago
  94. 863ac44 Whitespace normalization. by Tim Peters · 22 years ago
  95. 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 22 years ago
  96. cacbdf6 Make GzipFile an iterator. Closes bug #532621. by Neil Schemenauer · 22 years ago
  97. db04489 Patch #443899: Check modes on files before performing operations. by Martin v. Löwis · 22 years ago
  98. 95b0eb7 "f" should be "self"; reported by Neal Norwitz. by Fred Drake · 23 years ago
  99. f31d313 Remove redefinition of writelines() method Remove unused variable and import by Andrew M. Kuchling · 23 years ago
  100. ab9ba27 Whitespace normalization. by Tim Peters · 23 years ago