summaryrefslogtreecommitdiff
path: root/Lib/zipfile.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 85455 via svnmerge fromGeorg Brandl2010-11-261-5/+22
* Merged revisions 84737 via svnmerge fromAntoine Pitrou2010-09-121-6/+9
* Merged revisions 83959-83960 via svnmerge fromAntoine Pitrou2010-08-121-2/+23
* Issue 6003: ZipFile.writestr "compression_type" argumentRonald Oussoren2010-02-071-1/+5
* avoid to use zlib when the compress type is not ZIP_DEFLATEDEzio Melotti2010-01-281-6/+8
* Issue #7610: Reworked implementation of the internalAntoine Pitrou2010-01-271-187/+152
* #5511: Added the ability to use ZipFile as a context manager. Patch by Brian ...Ezio Melotti2009-12-301-0/+6
* #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file,Amaury Forgeot d'Arc2009-07-281-1/+4
* Fixes the last problem mentioned in issue1202.Gregory P. Smith2009-06-261-1/+1
* Issue #6050: Don't fail extracting a directory from a zipfile ifMartin v. Löwis2009-05-241-1/+2
* make sure files are closed using the with statementBenjamin Peterson2009-05-101-25/+23
* Issue #5692: In :class:`zipfile.Zipfile`, fix wrong path calculation when ext...Antoine Pitrou2009-05-041-1/+3
* revert unrelated changeBenjamin Peterson2009-05-021-3/+1
* remove py3k compat codeBenjamin Peterson2009-05-021-1/+3
* Issue #4710: Extract directories properly in the zipfile module;Martin v. Löwis2009-01-241-3/+20
* follow-up of #3997: since 0xFFFF numbers are not enough to indicate a zip64 f...Amaury Forgeot d'Arc2009-01-171-11/+6
* #3997: zipfiles generated with more than 65536 files could not be openedAmaury Forgeot d'Arc2009-01-171-7/+13
* Issue #4756: zipfile.is_zipfile() now supports file-like objects.Antoine Pitrou2008-12-271-7/+19
* Issue #3535: zipfile couldn't read some zip files larger than 2GB.Antoine Pitrou2008-09-051-3/+3
* fix ZipFile.testzip() to work with very large embedded filesAntoine Pitrou2008-08-171-1/+6
* #3394: zipfile.writestr doesn't set external attributes, so files are extract...Antoine Pitrou2008-07-251-0/+1
* #3317 in zipfile module, restore the previous names of global variables:Amaury Forgeot d'Arc2008-07-111-55/+27
* Patch #1622: Correct interpretation of various ZIP header fields.Martin v. Löwis2008-07-031-99/+204
* Patch #1775025: allow opening zipfile members via ZipInfo instances.Georg Brandl2008-05-201-5/+8
* Issue #1734346: Support Unicode file names for zipfiles.Martin v. Löwis2008-05-051-6/+24
* Fix the struct module DeprecationWarnings that zipfile was triggering byGregory P. Smith2008-03-191-27/+37
* Use zlib's crc32 routine instead of binascii when available. zlib's is fasterGregory P. Smith2008-03-191-3/+5
* Document that zipfile decryption is insanely slow and fix a typo andGregory P. Smith2008-01-201-1/+1
* Fix zipfile decryption. The check for validity only worked on oneGregory P. Smith2008-01-201-2/+11
* Fixes/Accepts Patch for issue1189216 - Work properly with archivesGregory P. Smith2008-01-191-2/+2
* Fix 1698398: Zipfile.printdir() crashed because the format string expected a...Raymond Hettinger2008-01-141-2/+2
* #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.Georg Brandl2008-01-071-1/+57
* Patch #1675424: Added tests for uncovered code in the zipfile module.Georg Brandl2007-07-121-3/+21
* Whitespace normalization.Tim Peters2007-03-121-14/+14
* Patch #1121142: Implement ZipFile.open.Martin v. Löwis2007-03-061-39/+235
* Patch #1517891: Make 'a' create the file if it doesn't exist.Martin v. Löwis2007-02-131-1/+8
* Patch #698833: Support file decryption in zipfile.Martin v. Löwis2007-02-131-1/+84
* ZipFile.close(): Kill the other struct.pack deprecationTim Peters2006-07-311-1/+1
* ZipFile.close(): Killed one of the struct.pack deprecationTim Peters2006-07-311-1/+2
* Whitespace normalization.Tim Peters2006-06-151-11/+11
* Patch #1446489 (zipfile: support for ZIP64)Ronald Oussoren2006-06-151-53/+331
* Bug #1413790: zipfile now sanitizes absolute archive names that areGeorg Brandl2006-02-201-3/+5
* Patch #1412872: zipfile: use correct system type on unixy systems.Martin v. Löwis2006-02-051-2/+6
* Remove dependency on order of mode flagsRaymond Hettinger2005-02-161-1/+1
* Don't choke on modes like rb or wb.Raymond Hettinger2004-11-061-1/+1
* Make struct formats for specifying file size to be unsigned instead of signedBrett Cannon2004-07-101-4/+4
* [Bug #835415] AIX can return modes that are >65536, which causes an OverflowE...Andrew M. Kuchling2004-07-101-1/+1
* SF patch #756996: Bare except in ZipFile.testzip()Raymond Hettinger2003-06-271-1/+1
* Remove debug print on filename with NUL byte.Greg Ward2003-06-181-1/+0
* SF patch #755987 (Jim Ahlstrom):Greg Ward2003-06-181-16/+15