summaryrefslogtreecommitdiff
path: root/Lib/test/test_zipfile.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #28115: ZIP creation test requires zlib.Serhiy Storchaka2016-10-231-0/+1
|\
| * 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-1/+67
|\ \ | |/
| * Issue #28115: Added tests for CLI of the zipfile module.Serhiy Storchaka2016-10-231-1/+67
* | Issue #26293: Fixed writing ZIP files that starts not from the start of theSerhiy Storchaka2016-10-071-0/+43
|\ \ | |/
| * Issue #26293: Fixed writing ZIP files that starts not from the start of theSerhiy Storchaka2016-10-071-0/+43
* | Issue #24693: Changed some RuntimeError's in the zipfile module to moreSerhiy Storchaka2016-09-101-20/+20
* | Issue #27029: Removed deprecated support of universal newlines mode from ZipF...Serhiy Storchaka2016-06-111-163/+4
* | Restored test_interleaved. After issue #8886 it was a duplicate ofSerhiy Storchaka2016-05-131-7/+92
|\ \ | |/ |/|
| * Issue #26039: zipfile.ZipFile.open() can now be used to write data into a ZIPSerhiy Storchaka2016-05-131-6/+77
| * Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+0
| * Issue #26039: Added zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir().Serhiy Storchaka2016-02-081-0/+15
* | 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-62/+175
|\
| * Merge from 3.4.Larry Hastings2015-05-081-2/+3
| |\
| * | Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-7/+4
| * | Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusiveSerhiy Storchaka2015-03-251-0/+13
| * | Issue #23252: Added support for writing ZIP files to unseekable streams.Serhiy Storchaka2015-03-231-12/+50
| * | Issue #17753: effective_ids unavailable on Windows.Berker Peksag2015-02-161-1/+3
| |\ \
| * \ \ Issue #17753: Skip test_zipfile tests which require write access to testSerhiy Storchaka2015-02-141-0/+8
| |\ \ \
| * | | | Issue #14099: Restored support of writing ZIP files to tellable butSerhiy Storchaka2015-01-261-0/+28
| * | | | Issue #14099: ZipFile.open() no longer reopen the underlying file. ObjectsSerhiy Storchaka2014-12-031-26/+95
| |\ \ \ \
| * | | | | Issue #22217: Implemented reprs of classes in the zipfile module.Serhiy Storchaka2014-10-291-0/+31
* | | | | | Issue #25101: Try to create a file to test write access in test_zipfile.Serhiy Storchaka2015-09-191-0/+7
| |_|_|_|/ |/| | | |
* | | | | Issue #21520: test_zipfile no longer fails if the word 'bad' appearsLarry Hastings2015-05-081-2/+3
| |_|_|/ |/| | |
* | | | Issue #17753: effective_ids unavailable on Windows.Berker Peksag2015-02-161-1/+3
| |_|/ |/| |
* | | Issue #17753: Skip test_zipfile tests which require write access to testSerhiy Storchaka2015-02-141-0/+8
* | | Issue #14099: Backout changeset e5bb3044402b (except adapted tests).Serhiy Storchaka2015-01-261-61/+55
| |/ |/|
* | Issue #14099: ZipFile.open() no longer reopen the underlying file. ObjectsSerhiy Storchaka2014-12-031-26/+95
|/
* Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOSSerhiy Storchaka2014-09-231-4/+41
* Fixed test_large_file_exception. Ported tests for large count of filesSerhiy Storchaka2014-09-231-1/+62
* Issue #21440: test_zipfile: replace last direct calls to os.remove() withVictor Stinner2014-09-041-5/+5
* Issue #21440: Backport changeset 4ebf97299b18 to branch 3.4, useVictor Stinner2014-09-041-12/+11
* Fix issue #14315: The zipfile module now ignores extra fields in the centralGregory P. Smith2014-05-291-0/+15
* Issue #20262: Warnings are raised now when duplicate names are added in theSerhiy Storchaka2014-01-201-3/+6
|\
| * Issue #20262: Warnings are raised now when duplicate names are added in theSerhiy Storchaka2014-01-201-2/+5
* | Issue #20078: Reading malformed zipfiles no longer hangs with 100% CPUSerhiy Storchaka2014-01-091-0/+31
|\ \ | |/
| * Issue #20078: Reading malformed zipfiles no longer hangs with 100% CPUSerhiy Storchaka2014-01-091-0/+31
* | Issue #15204: Silence and check the 'U' mode deprecation warnings in tests.Serhiy Storchaka2013-11-241-7/+22
* | Issue #17201: ZIP64 extensions now are enabled by default.Serhiy Storchaka2013-11-231-2/+2
* | add filtering of individual files to PyZipFileChristian Tismer2013-10-221-1/+30
* | #19274: use captured_stdout() in the test suite; add NEWS entry.Georg Brandl2013-10-211-8/+5
* | add a filterfunc to zip file.PyZipFile.writepy, issue 19274Christian Tismer2013-10-211-80/+102
* | Issue #19053: ZipExtFile.read1() with non-zero argument no more returns emptySerhiy Storchaka2013-09-271-7/+6
|\ \ | |/ |/|
| * Issue #17944: test_zipfile now discoverable and uses subclassing toSerhiy Storchaka2013-07-221-7/+6
| |\
| | * Issue #17177: Stop using imp in zipfileBrett Cannon2013-06-151-2/+2
| | * Move test_zipfile to unittest.main()Brett Cannon2013-06-121-7/+1
| | * Refactor recently added bugfix into more testable code by using aGregory P. Smith2013-02-031-12/+29
| | |\
| | * \ Fix the test for issue #6972.Serhiy Storchaka2013-02-021-4/+4
| | |\ \
| | | * \ Fixes Issue #6972: The zipfile module no longer overwrites files outside ofGregory P. Smith2013-02-011-4/+4
| | | |\ \