summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gzip.py
Commit message (Expand)AuthorAgeFilesLines
* gh-108111: Flush gzip write buffer before seeking, fixing bad writes (#108341)Chris Markiewicz2023-08-241-0/+12
* GH-106160: Fix test_gzip failing under WASI, which does not have zlib. (#106167)T. Wouters2023-06-281-1/+1
* GH-105808: Fix a regression introduced in GH-101251 (#105910)T. Wouters2023-06-191-0/+49
* bpo-46267: Test compresslevel in gzip.compress (#30416)Ruben Vorderman2022-05-031-0/+9
* bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)Christian Heimes2022-01-251-1/+3
* bpo-45507: EOFErrors should be thrown for truncated gzip members (GH-29029)Ruben Vorderman2021-11-191-0/+8
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-6/+1
* bpo-44439: BZ2File.write() / LZMAFile.write() handle buffer protocol correctl...Ma Lin2021-06-221-0/+9
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25171)Inada Naoki2021-04-041-6/+6
* bpo-43316: gzip: Fix sys.exit() usage. (GH-24652)Inada Naoki2021-02-261-1/+1
* bpo-43316: gzip: CLI uses non-zero return code on error. (GH-24647)Ruben Vorderman2021-02-251-4/+4
* bpo-40275: Use new test.support helper submodules in tests (GH-21451)Hai Shi2020-08-031-11/+13
* bpo-41069: Make TESTFN and the CWD for tests containing non-ascii characters....Serhiy Storchaka2020-06-251-4/+14
* bpo-39389: gzip: fix compression level metadata (GH-18077)William Chargin2020-01-211-0/+20
* bpo-28286: Deprecate opening GzipFile for writing implicitly. (GH-16417)Serhiy Storchaka2019-11-161-1/+3
* bpo-6584: Add a BadGzipFile exception to the gzip module. (GH-13022)Zackery Spytz2019-05-131-0/+9
* bpo-16079: fix duplicate test method name in test_gzip. (GH-12827)Gregory P. Smith2019-04-141-1/+1
* bpo-34898: Add mtime parameter to gzip.compress(). (GH-9704)guoci2018-11-071-0/+11
* bpo-34969: Add --fast, --best on the gzip CLI (GH-9833)Stéphane Wirtel2018-11-031-2/+30
* bpo-23596: Add unit tests for the command line for the gzip module (GH-9775)Stéphane Wirtel2018-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-101-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-181-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-191-0/+14
|\ \ | |/
| * Fix GzipFile's handling of filenames given as bytes objects.Nadeem Vawda2012-06-191-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