index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
gzip.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
backout 214d8909513d for regressions (#1159051)
Benjamin Peterson
2013-05-11
1
-33/+36
*
Close #17666: Fix reading gzip files with an extra field.
Serhiy Storchaka
2013-04-08
1
-1/+2
*
Issue #1159051: GzipFile now raises EOFError when reading a corrupted file
Serhiy Storchaka
2013-01-22
1
-36/+32
*
Issue #15677: Document that zlib and gzip accept a compression level of 0 to ...
Nadeem Vawda
2012-11-11
1
-2/+3
*
Bug #16441: avoid excessive memory usage working with large gzip files
Chris Withers
2012-11-09
1
-2/+2
*
Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().
Nadeem Vawda
2012-10-21
1
-0/+4
*
Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.
Nadeem Vawda
2012-01-18
1
-2/+6
*
Merged revisions 85291 via svnmerge from
Antoine Pitrou
2010-10-06
1
-0/+10
*
Fix test_gzip failure on OS X. The failure was a result of trying to fflush
Mark Dickinson
2010-05-04
1
-1/+1
*
Issue #2846: Add support for gzip.GzipFile reading zero-padded files.
Antoine Pitrou
2010-01-13
1
-0/+9
*
Issue #7471: Improve the performance of GzipFile's buffering mechanism,
Antoine Pitrou
2010-01-03
1
-57/+42
*
Issue #4750: Store the basename of the original filename in
Lars Gustäbel
2009-10-29
1
-2/+2
*
#4351: more appropriate DeprecationWarning stacklevels
Philip Jenvey
2009-05-08
1
-1/+1
*
Issue #3860: GzipFile and BZ2File now support the context manager protocol.
Antoine Pitrou
2009-01-10
1
-0/+8
*
Issue #4272: Add an optional argument to the GzipFile constructor to override...
Antoine Pitrou
2009-01-04
1
-4/+17
*
#2959: allow multiple close() calls for GzipFile.
Georg Brandl
2008-05-25
1
-0/+2
*
prevent a warning from the struct module when data size >= 2**32.
Gregory P. Smith
2008-03-23
1
-1/+1
*
A bugfix for r61813, it would fail if the data size was >=2**32.
Gregory P. Smith
2008-03-23
1
-5/+1
*
Fix gzip to deal with CRC's being signed values in Python 2.x properly and to
Gregory P. Smith
2008-03-23
1
-31/+13
*
Improve the error message when the CRCs don't match.
Gregory P. Smith
2008-03-19
1
-1/+2
*
Strip the '.gz' extension from the filename that is written to the
Lars Gustäbel
2007-02-13
1
-3/+6
*
Patch #1647484: Renamed GzipFile's filename attribute to name. The
Lars Gustäbel
2007-02-13
1
-8/+13
*
Patch #1355023: support whence argument for GzipFile.seek.
Martin v. Löwis
2006-11-12
1
-1/+6
*
Try to squash struct.pack warnings on the "amd64 gentoo trunk"
Tim Peters
2006-08-02
1
-1/+7
*
Apply revised patch for GzipFile.readline performance #1281707
Bob Ippolito
2006-05-22
1
-16/+21
*
Revert gzip readline performance patch #1281707 until a more generic performa...
Bob Ippolito
2006-05-22
1
-28/+20
*
GzipFile.readline performance improvement (~30-40%), patch #1281707
Bob Ippolito
2006-05-22
1
-20/+28
*
[Bug #1074261, patch #1074381] Restrict the size of chunks read from the file...
Andrew M. Kuchling
2005-06-09
1
-2/+3
*
Whitespace normalization.
Tim Peters
2005-03-28
1
-2/+2
*
Patch #1110248: SYNC_FLUSH the zlib buffer for GZipFile.flush.
Martin v. Löwis
2005-03-03
1
-1/+4
*
Ack, removed useless import of os I just introduced.
Tim Peters
2004-07-27
1
-1/+1
*
Added a new fileno() method. ZODB's repozo.py wants this so it can
Tim Peters
2004-07-27
1
-1/+9
*
Replace backticks with repr() or "%r"
Walter Dörwald
2004-02-12
1
-1/+1
*
Fix error in exception message.
Brett Cannon
2003-12-04
1
-1/+1
*
[Patch #654421 from Matthew Mueller]
Andrew M. Kuchling
2003-02-05
1
-2/+2
*
Another round on SF patch 618135: gzip.py and files > 2G
Tim Peters
2002-11-05
1
-4/+9
*
Related to SF patch 618135: gzip.py and files > 2G.
Tim Peters
2002-11-04
1
-18/+34
*
Remove mention of deprecated xreadlines method.
Guido van Rossum
2002-08-06
1
-1/+1
*
Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were ...
Raymond Hettinger
2002-05-29
1
-0/+38
*
force gzip module to open files using 'b'inary mode.
Skip Montanaro
2002-05-23
1
-0/+4
*
Whitespace normalization.
Tim Peters
2002-04-16
1
-2/+2
*
Partial introduction of bools where appropriate.
Guido van Rossum
2002-04-07
1
-11/+11
*
Make GzipFile an iterator. Closes bug #532621.
Neil Schemenauer
2002-03-20
1
-0/+10
*
Patch #443899: Check modes on files before performing operations.
Martin v. Löwis
2002-03-11
1
-1/+9
*
"f" should be "self"; reported by Neal Norwitz.
Fred Drake
2001-10-13
1
-1/+1
*
Remove redefinition of writelines() method
Andrew M. Kuchling
2001-08-13
1
-5/+0
*
Whitespace normalization.
Tim Peters
2001-08-09
1
-2/+2
*
Patch #448474: Add support for tell() and seek() to gzip.GzipFile.
Martin v. Löwis
2001-08-09
1
-2/+34
*
Bug #409419: delete seek() and tell() methods, so callers can use getattr()
Andrew M. Kuchling
2001-03-20
1
-6/+0
*
The code to write timestamps couldn't handle negative times (and time
Jack Jansen
2001-02-21
1
-0/+2
[next]