summaryrefslogtreecommitdiff
path: root/Lib/gzip.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-33038: Fix gzip.GzipFile for file objects with a non-string name attribut...Bo Bayles2018-05-091-3/+2
* Fix spelling (inital), grammar (may translates) in documentation, commentsMartin Panter2016-04-191-1/+1
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-12/+14
* Issue #21560: An attempt to write a data of wrong type no longer causeSerhiy Storchaka2015-03-231-2/+2
* Issue #13664: GzipFile now supports non-ascii Unicode filenames.Serhiy Storchaka2014-10-121-3/+10
* backout 214d8909513d for regressions (#1159051)Benjamin Peterson2013-05-111-33/+36
* Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-081-1/+2
* Issue #1159051: GzipFile now raises EOFError when reading a corrupted fileSerhiy Storchaka2013-01-221-36/+32
* Issue #15677: Document that zlib and gzip accept a compression level of 0 to ...Nadeem Vawda2012-11-111-2/+3
* Bug #16441: avoid excessive memory usage working with large gzip filesChris Withers2012-11-091-2/+2
* Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().Nadeem Vawda2012-10-211-0/+4
* Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.Nadeem Vawda2012-01-191-2/+6
* Merged revisions 85291 via svnmerge fromAntoine Pitrou2010-10-061-0/+10
* Fix test_gzip failure on OS X. The failure was a result of trying to fflushMark Dickinson2010-05-041-1/+1
* Issue #2846: Add support for gzip.GzipFile reading zero-padded files.Antoine Pitrou2010-01-131-0/+9
* Issue #7471: Improve the performance of GzipFile's buffering mechanism,Antoine Pitrou2010-01-031-57/+42
* Issue #4750: Store the basename of the original filename inLars Gustäbel2009-10-291-2/+2
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-081-1/+1
* Issue #3860: GzipFile and BZ2File now support the context manager protocol.Antoine Pitrou2009-01-101-0/+8
* Issue #4272: Add an optional argument to the GzipFile constructor to override...Antoine Pitrou2009-01-041-4/+17
* #2959: allow multiple close() calls for GzipFile.Georg Brandl2008-05-251-0/+2
* prevent a warning from the struct module when data size >= 2**32.Gregory P. Smith2008-03-231-1/+1
* A bugfix for r61813, it would fail if the data size was >=2**32.Gregory P. Smith2008-03-231-5/+1
* Fix gzip to deal with CRC's being signed values in Python 2.x properly and toGregory P. Smith2008-03-231-31/+13
* Improve the error message when the CRCs don't match.Gregory P. Smith2008-03-191-1/+2
* Strip the '.gz' extension from the filename that is written to theLars Gustäbel2007-02-131-3/+6
* Patch #1647484: Renamed GzipFile's filename attribute to name. TheLars Gustäbel2007-02-131-8/+13
* Patch #1355023: support whence argument for GzipFile.seek.Martin v. Löwis2006-11-121-1/+6
* Try to squash struct.pack warnings on the "amd64 gentoo trunk"Tim Peters2006-08-021-1/+7
* Apply revised patch for GzipFile.readline performance #1281707Bob Ippolito2006-05-221-16/+21
* Revert gzip readline performance patch #1281707 until a more generic performa...Bob Ippolito2006-05-221-28/+20
* GzipFile.readline performance improvement (~30-40%), patch #1281707Bob Ippolito2006-05-221-20/+28
* [Bug #1074261, patch #1074381] Restrict the size of chunks read from the file...Andrew M. Kuchling2005-06-091-2/+3
* Whitespace normalization.Tim Peters2005-03-281-2/+2
* Patch #1110248: SYNC_FLUSH the zlib buffer for GZipFile.flush.Martin v. Löwis2005-03-031-1/+4
* Ack, removed useless import of os I just introduced.Tim Peters2004-07-271-1/+1
* Added a new fileno() method. ZODB's repozo.py wants this so it canTim Peters2004-07-271-1/+9
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* Fix error in exception message.Brett Cannon2003-12-041-1/+1
* [Patch #654421 from Matthew Mueller]Andrew M. Kuchling2003-02-051-2/+2
* Another round on SF patch 618135: gzip.py and files > 2GTim Peters2002-11-051-4/+9
* Related to SF patch 618135: gzip.py and files > 2G.Tim Peters2002-11-041-18/+34
* Remove mention of deprecated xreadlines method.Guido van Rossum2002-08-061-1/+1
* Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were ...Raymond Hettinger2002-05-291-0/+38
* force gzip module to open files using 'b'inary mode.Skip Montanaro2002-05-231-0/+4
* Whitespace normalization.Tim Peters2002-04-161-2/+2
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-11/+11
* 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