summaryrefslogtreecommitdiff
path: root/Lib/test/test_gzip.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-16079: fix duplicate test method name in test_gzip. (GH-12827)Miss Islington (bot)2019-04-141-1/+1
* bpo-23596: Add unit tests for the command line for the gzip module (GH-9775)Miss Islington (bot)2018-10-091-6/+93
* bpo-28286: Add tests for the mode argument of GzipFile. (#4074)Serhiy Storchaka2017-10-221-0/+24
* Issue #28227: gzip now supports pathlibBerker Peksag2016-10-021-0/+22
* Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-111-2/+2
* Issue #25626: Change zlib to accept Py_ssize_t and cap to UINT_MAXMartin Panter2015-11-201-0/+9
* Issue #23529: Limit the size of decompressed data when reading fromAntoine Pitrou2015-04-111-2/+21
* Issue #23688: Added support of arbitrary bytes-like objects and avoidedSerhiy Storchaka2015-03-231-0/+37
* Issue #20875: Merge from 3.3Ned Deily2014-03-091-0/+7
|\
| * Issue #20875: Prevent possible gzip "'read' is not defined" NameError.Ned Deily2014-03-091-0/+7
| * Issue #19936: Remove executable bits from C source files and several forgottenSerhiy Storchaka2014-01-161-0/+0
* | Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-1/+0
|\ \ | |/
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-1/+0
| * Back out patch for #1159051, which caused backwards compatibility problems.Georg Brandl2013-05-121-14/+0
* | Issue #19222: Add support for the 'x' mode to the gzip module.Nadeem Vawda2013-10-191-0/+37
|/
* Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-081-0/+7
* Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-0/+14
|\
| * Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-0/+15
* | Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-201-0/+14
|\ \ | |/
| * Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-201-0/+14
* | Add fileobj support to gzip.open().Nadeem Vawda2012-06-041-0/+13
* | Really fix test_gzip failures on Windows.Nadeem Vawda2012-05-061-5/+7
* | Fix test_gzip failures on Windows.Nadeem Vawda2012-05-061-3/+3
* | Separate tests for gzip.GzipFile and gzip.open.Nadeem Vawda2012-05-061-15/+14
* | Closes #13989: Add support for text modes to gzip.open().Nadeem Vawda2012-05-061-0/+88
* | Merge: #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-181-0/+8
|\ \ | |/
| * Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-181-0/+8
* | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-281-2/+2
* | Issue #10791: Implement missing method GzipFile.read1(), allowing GzipFileAntoine Pitrou2011-04-041-0/+23
|/
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-2/+2
* #10465: fix broken delegation in __getattr__ of _PaddedFile.Georg Brandl2010-11-201-0/+6
* Implement #7944. Use `with` throughout the test suite.Brian Curtin2010-10-131-117/+104
* Issue #9759: GzipFile now raises ValueError when an operation is attemptedAntoine Pitrou2010-10-061-0/+22
* Issue #9962: GzipFile now has the peek() method.Antoine Pitrou2010-09-291-0/+22
* Issue #1675951: Allow GzipFile to work with unseekable file objects.Antoine Pitrou2010-09-231-0/+21
* Issue #3488: Provide convenient shorthand functions `gzip.compress`Antoine Pitrou2010-08-171-0/+20
* convert shebang lines: python -> python3Benjamin Peterson2010-03-111-1/+1
* Merged revisions 77472-77473 via svnmerge fromAntoine Pitrou2010-01-131-0/+12
* Merged revisions 77288 via svnmerge fromAntoine Pitrou2010-01-031-0/+11
* Merged revisions 74754 via svnmerge fromEzio Melotti2009-09-121-2/+1
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-3/+3
* Merged revisions 68484-68485 via svnmerge fromAntoine Pitrou2009-01-101-1/+21
* Merged revisions 68319 via svnmerge fromAntoine Pitrou2009-01-041-0/+63
* make FileIO.mode always include 'b'Benjamin Peterson2008-11-221-1/+1
* fix test_gzipBenjamin Peterson2008-11-211-1/+1
* Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,...Georg Brandl2008-05-251-3/+6
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-5/+5
* Always try to delete the data file before and after the test.Neal Norwitz2008-03-241-5/+2
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+1
* Fix gzip.py: Use bytes where 8bit strings have been used formerly.Walter Dörwald2007-06-061-9/+9