- 3b0b4ff Fix test_gzip failure on OS X. The failure was a result of trying to fflush by Mark Dickinson · 15 years ago
- 5a9112c Issue #2846: Add support for gzip.GzipFile reading zero-padded files. by Antoine Pitrou · 15 years ago
- 673ddf9 Issue #7471: Improve the performance of GzipFile's buffering mechanism, by Antoine Pitrou · 15 years ago
- 8c06ccc Issue #4750: Store the basename of the original filename in by Lars Gustäbel · 15 years ago
- d846f1d #4351: more appropriate DeprecationWarning stacklevels by Philip Jenvey · 16 years ago
- b74fc2b Issue #3860: GzipFile and BZ2File now support the context manager protocol. by Antoine Pitrou · 16 years ago
- f0d2c3f Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream. by Antoine Pitrou · 16 years ago
- e08e3d0 #2959: allow multiple close() calls for GzipFile. by Georg Brandl · 16 years ago
- dd10284 prevent a warning from the struct module when data size >= 2**32. by Gregory P. Smith · 17 years ago
- ac830e9 A bugfix for r61813, it would fail if the data size was >=2**32. by Gregory P. Smith · 17 years ago
- 79b4ba8 Fix gzip to deal with CRC's being signed values in Python 2.x properly and to by Gregory P. Smith · 17 years ago
- f15cde3 Improve the error message when the CRCs don't match. by Gregory P. Smith · 17 years ago
- f19c1b5 Strip the '.gz' extension from the filename that is written to the gzip header. by Lars Gustäbel · 18 years ago
- 5b1a785 Patch #1647484: Renamed GzipFile's filename attribute to name. The by Lars Gustäbel · 18 years ago
- 065f0c8 Patch #1355023: support whence argument for GzipFile.seek. by Martin v. Löwis · 18 years ago
- 62decc9 Try to squash struct.pack warnings on the "amd64 gentoo trunk" by Tim Peters · 18 years ago
- d82c310 Apply revised patch for GzipFile.readline performance #1281707 by Bob Ippolito · 18 years ago
- b975973 Revert gzip readline performance patch #1281707 until a more generic performance improvement can be found by Bob Ippolito · 18 years ago
- d72aab5 GzipFile.readline performance improvement (~30-40%), patch #1281707 by Bob Ippolito · 18 years ago
- 01cb47b [Bug #1074261, patch #1074381] Restrict the size of chunks read from the file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin by Andrew M. Kuchling · 19 years ago
- eba28be Whitespace normalization. by Tim Peters · 20 years ago
- f2a8d63 Patch #1110248: SYNC_FLUSH the zlib buffer for GZipFile.flush. by Martin v. Löwis · 20 years ago
- 49667c2 Ack, removed useless import of os I just introduced. by Tim Peters · 20 years ago
- 5cfb05e Added a new fileno() method. ZODB's repozo.py wants this so it can by Tim Peters · 20 years ago
- 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
- edfb302 Fix error in exception message. by Brett Cannon · 21 years ago
- 64edd6a [Patch #654421 from Matthew Mueller] by Andrew M. Kuchling · 22 years ago
- 9288f95 Another round on SF patch 618135: gzip.py and files > 2G by Tim Peters · 22 years ago
- fb0ea52 Related to SF patch 618135: gzip.py and files > 2G. by Tim Peters · 22 years ago
- 97c5fcc Remove mention of deprecated xreadlines method. by Guido van Rossum · 22 years ago
- aef22fb Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were not updated after 2.2). by Raymond Hettinger · 22 years ago
- 12424bc force gzip module to open files using 'b'inary mode. closes patch #536278. by Skip Montanaro · 22 years ago
- 863ac44 Whitespace normalization. by Tim Peters · 23 years ago
- 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 23 years ago
- cacbdf6 Make GzipFile an iterator. Closes bug #532621. by Neil Schemenauer · 23 years ago
- db04489 Patch #443899: Check modes on files before performing operations. by Martin v. Löwis · 23 years ago
- 95b0eb7 "f" should be "self"; reported by Neal Norwitz. by Fred Drake · 23 years ago
- f31d313 Remove redefinition of writelines() method Remove unused variable and import by Andrew M. Kuchling · 23 years ago
- ab9ba27 Whitespace normalization. by Tim Peters · 23 years ago
- 8cc965c Patch #448474: Add support for tell() and seek() to gzip.GzipFile. by Martin v. Löwis · 23 years ago
- 44f5f8f Bug #409419: delete seek() and tell() methods, so callers can use getattr() by Andrew M. Kuchling · 24 years ago
- 2d0589b The code to write timestamps couldn't handle negative times (and time by Jack Jansen · 24 years ago
- ee5e61d String method conversion. by Eric S. Raymond · 24 years ago
- 2dd4276 added a few more __all__ lists fixed typo in ihooks docstring by Skip Montanaro · 24 years ago
- 07e99cb Whitespace normalization. by Tim Peters · 24 years ago
- 41616ee SF patch #100740: Add optional size arguments to .readline() and by Andrew M. Kuchling · 24 years ago
- e298c30 if the GzipFile constructor fails, the __del__ method is still by Jeremy Hylton · 25 years ago
- 4b8c6ea Actually, the previous batch's comment should have been different; by Guido van Rossum · 25 years ago
- 54f22ed More trivial comment -> docstring transformations by Ka-Ping Yee, who writes: by Guido van Rossum · 25 years ago
- 5606801 Make read() and readlines() conform more to the file object interface: by Guido van Rossum · 25 years ago
- 2d813e5 Fixed 'return EOFError' that should be 'raise EOFError', caught by by Andrew M. Kuchling · 25 years ago
- 916fcc3 Added __del__ method to GzipFile class that will flush and close the by Andrew M. Kuchling · 25 years ago
- 95bdd0b Two different changes. by Guido van Rossum · 26 years ago
- fa1591c Oops, missed mode parameter to open(). by Fred Drake · 26 years ago
- 9bb76d1 Made the default mode 'rb' instead of 'r', for better cross-platform by Fred Drake · 26 years ago
- f4f119c Based on a suggestion from bruce@hams.com, make a trivial change to by Andrew M. Kuchling · 26 years ago
- c19f997 use struct instead of bit-manipulate in Python by Jeremy Hylton · 26 years ago
- 84c6fc9 Patch by Ron Klatchko: fix invariant in _unread(). Also fixed by Guido van Rossum · 26 years ago
- ee918cb Fix bug reported by Harri Pasanen: gzip + cPickle doesn't work. The by Jeremy Hylton · 27 years ago
- 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 27 years ago
- b16a3b8 (This fix is really by Jeremy) by Guido van Rossum · 27 years ago
- 51ca6e3 When there's no filename, don't make one up. by Guido van Rossum · 27 years ago
- 68de379 Add the option to pass an open file object to GzipFile. This obviates by Guido van Rossum · 27 years ago
- 1526219 Adding Jeremy Hylton's gzip module. by Guido van Rossum · 28 years ago