summaryrefslogtreecommitdiffstats
path: root/Lib/gzip.py
Commit message (Expand)AuthorAgeFilesLines
* Make GzipFile an iterator. Closes bug #532621.Neil Schemenauer2002-03-201-0/+10
* Patch #443899: Check modes on files before performing operations.Martin v. Löwis2002-03-111-1/+9
* "f" should be "self"; reported by Neal Norwitz.Fred Drake2001-10-131-1/+1
* Remove redefinition of writelines() methodAndrew M. Kuchling2001-08-131-5/+0
* Whitespace normalization.Tim Peters2001-08-091-2/+2
* Patch #448474: Add support for tell() and seek() to gzip.GzipFile.Martin v. Löwis2001-08-091-2/+34
* Bug #409419: delete seek() and tell() methods, so callers can use getattr()Andrew M. Kuchling2001-03-201-6/+0
* The code to write timestamps couldn't handle negative times (and timeJack Jansen2001-02-211-0/+2
* String method conversion.Eric S. Raymond2001-02-091-5/+5
* added a few more __all__ listsSkip Montanaro2001-01-231-0/+2
* Whitespace normalization.Tim Peters2001-01-141-25/+25
* SF patch #100740: Add optional size arguments to .readline() andAndrew M. Kuchling2000-07-291-19/+37
* if the GzipFile constructor fails, the __del__ method is stillJeremy Hylton2000-05-081-3/+7
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-1/+2
* More trivial comment -> docstring transformations by Ka-Ping Yee,Guido van Rossum2000-02-041-6/+6
* Make read() and readlines() conform more to the file object interface:Guido van Rossum2000-02-021-3/+3
* Fixed 'return EOFError' that should be 'raise EOFError', caught byAndrew M. Kuchling1999-09-061-1/+1
* Added __del__ method to GzipFile class that will flush and close theAndrew M. Kuchling1999-08-101-0/+5
* Two different changes.Guido van Rossum1999-04-121-2/+5
* Oops, missed mode parameter to open().Fred Drake1999-04-051-1/+1
* Made the default mode 'rb' instead of 'r', for better cross-platformFred Drake1999-04-051-2/+2
* Based on a suggestion from bruce@hams.com, make a trivial change toAndrew M. Kuchling1999-03-251-32/+67
* use struct instead of bit-manipulate in PythonJeremy Hylton1999-03-231-21/+3
* Patch by Ron Klatchko: fix invariant in _unread(). Also fixedGuido van Rossum1998-08-031-3/+9
* Fix bug reported by Harri Pasanen: gzip + cPickle doesn't work. TheJeremy Hylton1998-05-131-4/+3
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-203/+203
* (This fix is really by Jeremy)Guido van Rossum1998-01-271-22/+29
* When there's no filename, don't make one up.Guido van Rossum1997-12-301-6/+54
* Add the option to pass an open file object to GzipFile. This obviatesGuido van Rossum1997-07-191-55/+44
* Adding Jeremy Hylton's gzip module.Guido van Rossum1997-04-301-0/+264