summaryrefslogtreecommitdiff
path: root/Lib/gzip.py
Commit message (Expand)AuthorAgeFilesLines
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-1/+1
* Issue #28227: gzip now supports pathlibBerker Peksag2016-10-021-1/+3
* Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-111-2/+2
* Fix spelling (inital), grammar (may translates) in documentation, commentsMartin Panter2016-04-191-1/+1
* Issue #22341: Drop Python 2 workaround and document CRC initial valueMartin Panter2015-12-111-4/+4
* Issue #23529: Limit the size of decompressed data when reading fromAntoine Pitrou2015-04-111-295/+188
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-12/+14
|\
| * Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-12/+14
| * Issue #21560: An attempt to write a data of wrong type no longer causeSerhiy Storchaka2015-03-231-2/+2
* | Issue #23688: Added support of arbitrary bytes-like objects and avoidedSerhiy Storchaka2015-03-231-8/+11
|/
* Issue #20875: Merge from 3.3Ned Deily2014-03-091-1/+1
|\
| * Issue #20875: Prevent possible gzip "'read' is not defined" NameError.Ned Deily2014-03-091-1/+1
* | Issue #19222: Add support for the 'x' mode to the gzip module.Nadeem Vawda2013-10-191-7/+7
* | Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-1/+1
|\ \ | |/
| * Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-1/+1
| * Back out patch for #1159051, which caused backwards compatibility problems.Georg Brandl2013-05-121-37/+44
* | Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-081-1/+2
|\ \ | |/
| * Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-081-1/+2
* | Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-44/+37
|\ \ | |/
| * Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-44/+37
| |\
| | * Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-38/+34
| | * #15546: Fix GzipFile.peek()'s handling of pathological input data.Serhiy Storchaka2013-01-221-2/+4
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-10/+10
|/ /
* | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ...Nadeem Vawda2012-11-111-3/+4
|\ \ | |/
| * Issue #15677: Document that zlib and gzip accept a compression level of 0 to ...Nadeem Vawda2012-11-111-3/+4
* | Issue #15800: fix the closing of input / output files when gzip is used as a ...Antoine Pitrou2012-08-301-2/+2
|\ \ | |/
| * Issue #15800: fix the closing of input / output files when gzip is used as a ...Antoine Pitrou2012-08-301-2/+2
* | #15546: Also fix GzipFile.peek().Nadeem Vawda2012-08-051-2/+4
* | #15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data.Nadeem Vawda2012-08-051-1/+4
* | Update GzipFile docstring to mention gzip.open()'s new text-mode support.Nadeem Vawda2012-06-301-1/+1
* | Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-201-4/+4
|\ \ | |/
| * Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-201-4/+4
* | Add fileobj support to gzip.open().Nadeem Vawda2012-06-041-1/+12
* | Closes #13989: Add support for text modes to gzip.open().Nadeem Vawda2012-05-061-9/+33
* | Clean up GzipFile mode string handling code.Nadeem Vawda2012-02-121-6/+5
* | Merge: #13989: Document that GzipFile does not support text mode.Nadeem Vawda2012-02-111-4/+7
|\ \ | |/
| * Issue #13989: Document that GzipFile does not support text mode.Nadeem Vawda2012-02-111-4/+7
* | Merge: #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-181-2/+4
|\ \ | |/
| * Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-181-2/+4
* | Remove dead code in gzip.Nadeem Vawda2011-04-131-12/+0
* | Issue #10791: Implement missing method GzipFile.read1(), allowing GzipFileAntoine Pitrou2011-04-041-0/+22
|/
* #10465: fix broken delegation in __getattr__ of _PaddedFile.Georg Brandl2010-11-201-1/+1
* Issue #9759: GzipFile now raises ValueError when an operation is attemptedAntoine Pitrou2010-10-061-0/+10
* GzipFile.peek improvements, suggested by Nir Aides.Antoine Pitrou2010-10-041-3/+5
* Issue #9962: GzipFile now has the peek() method.Antoine Pitrou2010-09-291-1/+24
* Issue #1675951: Allow GzipFile to work with unseekable file objects.Antoine Pitrou2010-09-231-18/+73
* Issue #3488: Provide convenient shorthand functions `gzip.compress`Antoine Pitrou2010-08-171-1/+18
* Merged revisions 80762 via svnmerge fromMark Dickinson2010-05-041-1/+1
* Merged revisions 77472-77473 via svnmerge fromAntoine Pitrou2010-01-131-0/+9
* Merged revisions 77288 via svnmerge fromAntoine Pitrou2010-01-031-57/+42