summaryrefslogtreecommitdiffstats
path: root/Lib/gzip.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 77472-77473 via svnmerge fromAntoine Pitrou2010-01-131-0/+9
* Merged revisions 77288 via svnmerge fromAntoine Pitrou2010-01-031-57/+42
* Issue #4757: `zlib.compress` and other methods in the zlib module nowAntoine Pitrou2009-12-141-2/+2
* Merged revisions 75935 via svnmerge fromLars Gustäbel2009-10-291-2/+3
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-081-1/+1
* Merged revisions 68484-68485 via svnmerge fromAntoine Pitrou2009-01-101-0/+8
* Merged revisions 68319 via svnmerge fromAntoine Pitrou2009-01-041-4/+17
* Buglet: restore functioning of gzip as an executable when (de)compressing fro...Antoine Pitrou2009-01-041-4/+4
* Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,...Georg Brandl2008-05-251-0/+2
* Merged revisions 61820-61823 via svnmerge fromChristian Heimes2008-03-241-3/+2
* Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,...Christian Heimes2008-03-231-22/+13
* Merged revisions 61644,61646-61647,61649-61652,61656-61658,61663,61665,61667 ...Christian Heimes2008-03-201-1/+2
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-2/+2
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-4/+4
* Raise statement normalization in Lib/.Collin Winter2007-08-301-9/+9
* Retouch my last change after a comment on style from Guido.Lars Gustäbel2007-08-131-10/+7
* RFC 1952 requires the FNAME field to be Latin-1. Do not includeLars Gustäbel2007-08-101-2/+9
* Fix gzip.py: Use bytes where 8bit strings have been used formerly.Walter Dörwald2007-06-061-20/+22
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-1/+1
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-5/+13
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-3/+3
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-1/+6
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+7
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-16/+21
* [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
* 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