summaryrefslogtreecommitdiffstats
path: root/Lib/gzip.py
Commit message (Expand)AuthorAgeFilesLines
* 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