summaryrefslogtreecommitdiff
path: root/Lib/test/test_zipfile.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34341: Fix appending to ZIP archives with the ZIP64 extension. (GH-...Serhiy Storchaka2018-09-181-0/+14
* Issue #28115: ZIP creation test requires zlib.Serhiy Storchaka2016-10-231-0/+1
* Issue #28115: Added tests for CLI of the zipfile module.Serhiy Storchaka2016-10-231-2/+72
* Issue #26293: Fixed writing ZIP files that starts not from the start of theSerhiy Storchaka2016-10-071-0/+43
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Restored test_interleaved. After issue #8886 it was a duplicate ofSerhiy Storchaka2016-05-131-4/+5
* Issue #25101: Try to create a file to test write access in test_zipfile.Serhiy Storchaka2015-09-191-0/+7
* Issue #17753: Skip test_zipfile tests which require write access to testSerhiy Storchaka2015-02-141-0/+6
* Issue #14099: Backout changeset c2c4cde55f6f (except adapted tests).Serhiy Storchaka2015-01-261-79/+61
* Issue #14099: ZipFile.open() no longer reopen the underlying file. ObjectsSerhiy Storchaka2014-12-031-28/+101
* Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOSSerhiy Storchaka2014-09-231-3/+40
* Fixed test_large_file_exception. Ported tests for large count of filesSerhiy Storchaka2014-09-231-1/+58
* adjust zipfile tests for splitdrive improvementsBenjamin Peterson2014-06-221-4/+4
* Fix issue #14315: The zipfile module now ignores extra fields in the centralGregory P. Smith2014-05-291-0/+15
* 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-201-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-191-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