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
/
zipfile.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated
Senthil Kumaran
2011-10-19
1
-0/+4
*
#10694: zipfile now ignores garbage at the end of a zipfile.
R David Murray
2011-06-09
1
-10/+8
*
Merged revisions 85455 via svnmerge from
Georg Brandl
2010-11-26
1
-5/+22
*
Merged revisions 84737 via svnmerge from
Antoine Pitrou
2010-09-12
1
-6/+9
*
Merged revisions 83959-83960 via svnmerge from
Antoine Pitrou
2010-08-12
1
-2/+23
*
Issue 6003: ZipFile.writestr "compression_type" argument
Ronald Oussoren
2010-02-07
1
-1/+5
*
avoid to use zlib when the compress type is not ZIP_DEFLATED
Ezio Melotti
2010-01-28
1
-6/+8
*
Issue #7610: Reworked implementation of the internal
Antoine Pitrou
2010-01-27
1
-187/+152
*
#5511: Added the ability to use ZipFile as a context manager. Patch by Brian ...
Ezio Melotti
2009-12-30
1
-0/+6
*
#6511: ZipFile will now raise BadZipfile when opening an empty or tiny file,
Amaury Forgeot d'Arc
2009-07-28
1
-1/+4
*
Fixes the last problem mentioned in issue1202.
Gregory P. Smith
2009-06-26
1
-1/+1
*
Issue #6050: Don't fail extracting a directory from a zipfile if
Martin v. Löwis
2009-05-24
1
-1/+2
*
make sure files are closed using the with statement
Benjamin Peterson
2009-05-10
1
-25/+23
*
Issue #5692: In :class:`zipfile.Zipfile`, fix wrong path calculation when ext...
Antoine Pitrou
2009-05-04
1
-1/+3
*
revert unrelated change
Benjamin Peterson
2009-05-02
1
-3/+1
*
remove py3k compat code
Benjamin Peterson
2009-05-02
1
-1/+3
*
Issue #4710: Extract directories properly in the zipfile module;
Martin v. Löwis
2009-01-24
1
-3/+20
*
follow-up of #3997: since 0xFFFF numbers are not enough to indicate a zip64 f...
Amaury Forgeot d'Arc
2009-01-17
1
-11/+6
*
#3997: zipfiles generated with more than 65536 files could not be opened
Amaury Forgeot d'Arc
2009-01-17
1
-7/+13
*
Issue #4756: zipfile.is_zipfile() now supports file-like objects.
Antoine Pitrou
2008-12-27
1
-7/+19
*
Issue #3535: zipfile couldn't read some zip files larger than 2GB.
Antoine Pitrou
2008-09-05
1
-3/+3
*
fix ZipFile.testzip() to work with very large embedded files
Antoine Pitrou
2008-08-17
1
-1/+6
*
#3394: zipfile.writestr doesn't set external attributes, so files are extract...
Antoine Pitrou
2008-07-25
1
-0/+1
*
#3317 in zipfile module, restore the previous names of global variables:
Amaury Forgeot d'Arc
2008-07-11
1
-55/+27
*
Patch #1622: Correct interpretation of various ZIP header fields.
Martin v. Löwis
2008-07-03
1
-99/+204
*
Patch #1775025: allow opening zipfile members via ZipInfo instances.
Georg Brandl
2008-05-20
1
-5/+8
*
Issue #1734346: Support Unicode file names for zipfiles.
Martin v. Löwis
2008-05-05
1
-6/+24
*
Fix the struct module DeprecationWarnings that zipfile was triggering by
Gregory P. Smith
2008-03-19
1
-27/+37
*
Use zlib's crc32 routine instead of binascii when available. zlib's is faster
Gregory P. Smith
2008-03-19
1
-3/+5
*
Document that zipfile decryption is insanely slow and fix a typo and
Gregory P. Smith
2008-01-20
1
-1/+1
*
Fix zipfile decryption. The check for validity only worked on one
Gregory P. Smith
2008-01-20
1
-2/+11
*
Fixes/Accepts Patch for issue1189216 - Work properly with archives
Gregory P. Smith
2008-01-19
1
-2/+2
*
Fix 1698398: Zipfile.printdir() crashed because the format string expected a...
Raymond Hettinger
2008-01-14
1
-2/+2
*
#467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.
Georg Brandl
2008-01-07
1
-1/+57
*
Patch #1675424: Added tests for uncovered code in the zipfile module.
Georg Brandl
2007-07-12
1
-3/+21
*
Whitespace normalization.
Tim Peters
2007-03-12
1
-14/+14
*
Patch #1121142: Implement ZipFile.open.
Martin v. Löwis
2007-03-06
1
-39/+235
*
Patch #1517891: Make 'a' create the file if it doesn't exist.
Martin v. Löwis
2007-02-13
1
-1/+8
*
Patch #698833: Support file decryption in zipfile.
Martin v. Löwis
2007-02-13
1
-1/+84
*
ZipFile.close(): Kill the other struct.pack deprecation
Tim Peters
2006-07-31
1
-1/+1
*
ZipFile.close(): Killed one of the struct.pack deprecation
Tim Peters
2006-07-31
1
-1/+2
*
Whitespace normalization.
Tim Peters
2006-06-15
1
-11/+11
*
Patch #1446489 (zipfile: support for ZIP64)
Ronald Oussoren
2006-06-15
1
-53/+331
*
Bug #1413790: zipfile now sanitizes absolute archive names that are
Georg Brandl
2006-02-20
1
-3/+5
*
Patch #1412872: zipfile: use correct system type on unixy systems.
Martin v. Löwis
2006-02-05
1
-2/+6
*
Remove dependency on order of mode flags
Raymond Hettinger
2005-02-16
1
-1/+1
*
Don't choke on modes like rb or wb.
Raymond Hettinger
2004-11-06
1
-1/+1
*
Make struct formats for specifying file size to be unsigned instead of signed
Brett Cannon
2004-07-10
1
-4/+4
*
[Bug #835415] AIX can return modes that are >65536, which causes an OverflowE...
Andrew M. Kuchling
2004-07-10
1
-1/+1
*
SF patch #756996: Bare except in ZipFile.testzip()
Raymond Hettinger
2003-06-27
1
-1/+1
[next]