summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_zipfile.py
Commit message (Expand)AuthorAgeFilesLines
* properly close files in test_zipfile (#20887)Benjamin Peterson2014-04-031-28/+46
* Issue #20262: Warnings are raised now when duplicate names are added in theSerhiy Storchaka2014-01-201-3/+6
* Issue #17656: Skip test_extract_unicode_filenames if the FS encodingSerhiy Storchaka2013-05-081-1/+9
* Issue #17656: Fix extraction of zip files with unicode member paths.Serhiy Storchaka2013-04-131-1/+20
* Fix test for issue #6972.Serhiy Storchaka2013-02-021-0/+1
* Preserve backslashes in malicious zip files for testing issue #6972.Serhiy Storchaka2013-02-021-1/+6
* Fix the test and remove trailing dots on Windows for issue #6972.Serhiy Storchaka2013-02-021-8/+14
* Fixes Issue #6972: The zipfile module no longer overwrites files outside ofGregory P. Smith2013-02-011-9/+77
* Issue #4844: ZipFile now raises BadZipfile when opens a ZIP file with anSerhiy Storchaka2013-01-311-0/+14
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-1/+1
* #14313: zipfile now raises NotImplementedError when the compression type is u...Ezio Melotti2012-11-181-0/+11
* #14399: zipfile now correctly handles comments added to empty zipfiles.R David Murray2012-04-121-0/+16
* Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelatedSenthil Kumaran2011-10-191-0/+10
* #10694: zipfile now ignores garbage at the end of a zipfile.R David Murray2011-06-091-0/+18
* Fix #8886. Use context managers throughout zipfile tests.Brian Curtin2011-04-201-112/+110
* Fix typo: BadZipFile exists in 3.2+ only, not older versions.Éric Araujo2011-02-021-1/+1
* Merged revisions 85455 via svnmerge fromGeorg Brandl2010-11-261-0/+25
* Merged revisions 84737 via svnmerge fromAntoine Pitrou2010-09-121-0/+20
* Merged revisions 83959-83960 via svnmerge fromAntoine Pitrou2010-08-121-0/+80
* Issue 6003: ZipFile.writestr "compression_type" argumentRonald Oussoren2010-02-071-0/+14
* Issue #7610: Reworked implementation of the internalAntoine Pitrou2010-01-271-0/+84
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-1/+1
* use assert[Not]In where appropriateEzio Melotti2010-01-231-21/+21
* indentation and further alignment with py3kEzio Melotti2009-12-311-3/+3
* cleanup and refactoringEzio Melotti2009-12-311-128/+123
* #5511: Added the ability to use ZipFile as a context manager. Patch by Brian ...Ezio Melotti2009-12-301-489/+452
* #6026 - fix tests that failed without zlibEzio Melotti2009-09-121-0/+3
* #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file,Amaury Forgeot d'Arc2009-07-281-0/+10
* methods' names pep8ificationEzio Melotti2009-07-151-127/+127
* more cleanups and if zlib -> skipUnless(zlib)Ezio Melotti2009-07-101-90/+94
* if zlib -> skipUnless(zlib) and minor cleanupsEzio Melotti2009-07-041-37/+49
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-38/+38
* Issue #6050: Don't fail extracting a directory from a zipfile ifMartin v. Löwis2009-05-241-0/+5
* Issue #4710: Extract directories properly in the zipfile module;Martin v. Löwis2009-01-241-1/+25
* Issue #4756: zipfile.is_zipfile() now supports file-like objects.Antoine Pitrou2008-12-271-5/+34
* #3394: zipfile.writestr doesn't set external attributes, so files are extract...Antoine Pitrou2008-07-251-0/+13
* Patch #1622: Correct interpretation of various ZIP header fields.Martin v. Löwis2008-07-031-0/+48
* Patch #1775025: allow opening zipfile members via ZipInfo instances.Georg Brandl2008-05-201-0/+19
* Fix Unicode filename test.Martin v. Löwis2008-05-051-4/+6
* Issue #1734346: Support Unicode file names for zipfiles.Martin v. Löwis2008-05-051-0/+9
* Unit test fix from Giampaolo Rodola, #1938Christian Heimes2008-01-261-0/+1
* Fix zipfile decryption. The check for validity only worked on oneGregory P. Smith2008-01-201-0/+21
* #467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.Georg Brandl2008-01-071-0/+56
* Patch #1675424: Added tests for uncovered code in the zipfile module.Georg Brandl2007-07-121-4/+114
* Remove direct call's to file's constructor and replace them with calls toBrett Cannon2007-05-251-1/+1
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-2/+2
* Make test_zipfile clean up its temporary files properly.Collin Winter2007-03-291-7/+12
* Whitespace normalization.Tim Peters2007-03-121-49/+49
* Patch #1121142: Implement ZipFile.open.Martin v. Löwis2007-03-061-10/+402
* Patch #1517891: Make 'a' create the file if it doesn't exist.Martin v. Löwis2007-02-131-0/+22