summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gzip.py
Commit message (Expand)AuthorAgeFilesLines
* #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
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-0/+7
* Merged revisions 53538-53622 via svnmerge fromThomas Wouters2007-02-051-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+11
* [Bug #1074261, patch #1074381] Restrict the size of chunks read from the file...Andrew M. Kuchling2005-06-091-0/+23
* Convert gzip test suite to use unittestAndrew M. Kuchling2005-06-091-74/+110
* SF bug #999776, zlib home page wrongNeal Norwitz2004-07-291-1/+1
* Added a new fileno() method. ZODB's repozo.py wants this so it canTim Peters2004-07-271-1/+9
* Massive changes from SF 589982 (tempfile.py rewrite, by ZackGuido van Rossum2002-08-091-3/+3
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
* force gzip module to open files using 'b'inary mode.Skip Montanaro2002-05-231-1/+5
* Whitespace normalization.Tim Peters2001-08-091-1/+1
* Patch #448474: Add support for tell() and seek() to gzip.GzipFile.Martin v. Löwis2001-08-091-0/+24
* Marc-Andre must not have run these tests -- they used verify() butGuido van Rossum2001-01-171-2/+3
* This patch removes all uses of "assert" in the regression test suiteMarc-André Lemburg2001-01-171-3/+3
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-3/+2
* Exercise .readline() and .readlines(). More data is written to theAndrew M. Kuchling2000-07-291-4/+28
* Use binary mode for all gzip files we open.Guido van Rossum1999-04-071-4/+4
* Added a simple test suite for gzip. It simply opens a temp file,Andrew M. Kuchling1999-03-251-0/+30