Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-30017: Allowed calling the close() method of the zip entry writer object ↵ | Serhiy Storchaka | 2017-04-12 | 1 | -0/+42 |
| | | | | | | (#1041) multiple times. Writing to closed zip entry writer object now always produce a ValueError. | ||||
* | bpo-29958: Minor improvements to zipfile and tarfile CLI. (#944) | Serhiy Storchaka | 2017-04-07 | 1 | -0/+10 |
| | |||||
* | bpo-29919: Remove unused imports found by pyflakes (#137) | Victor Stinner | 2017-03-27 | 1 | -1/+1 |
| | | | Make also minor PEP8 coding style fixes on modified imports. | ||||
* | bpo-28231: The zipfile module now accepts path-like objects for external ↵ | Serhiy Storchaka | 2017-03-08 | 1 | -15/+102 |
| | | | | paths. (#511) | ||||
* | Issue #28115: ZIP creation test requires zlib. | Serhiy Storchaka | 2016-10-23 | 1 | -0/+1 |
|\ | |||||
| * | Issue #28115: ZIP creation test requires zlib. | Serhiy Storchaka | 2016-10-23 | 1 | -0/+1 |
| |\ | |||||
| | * | Issue #28115: ZIP creation test requires zlib. | Serhiy Storchaka | 2016-10-23 | 1 | -0/+1 |
| | | | |||||
* | | | Issue #28115: Command-line interface of the zipfile module now uses argparse. | Serhiy Storchaka | 2016-10-23 | 1 | -27/+31 |
|/ / | | | | | | | Added support of long options. | ||||
* | | Issue #28115: Added tests for CLI of the zipfile module. | Serhiy Storchaka | 2016-10-23 | 1 | -1/+67 |
|\ \ | |/ | |||||
| * | Issue #28115: Added tests for CLI of the zipfile module. | Serhiy Storchaka | 2016-10-23 | 1 | -1/+67 |
| | | |||||
* | | Issue #26293: Fixed writing ZIP files that starts not from the start of the | Serhiy Storchaka | 2016-10-07 | 1 | -0/+43 |
|\ \ | |/ | | | | | | | file. Offsets in ZIP file now are relative to the start of the archive in conforming to the specification. | ||||
| * | Issue #26293: Fixed writing ZIP files that starts not from the start of the | Serhiy Storchaka | 2016-10-07 | 1 | -0/+43 |
| | | | | | | | | | | file. Offsets in ZIP file now are relative to the start of the archive in conforming to the specification. | ||||
* | | Issue #24693: Changed some RuntimeError's in the zipfile module to more | Serhiy Storchaka | 2016-09-10 | 1 | -20/+20 |
| | | | | | | | | appropriate types. Improved some error messages and debugging output. | ||||
* | | Issue #27029: Removed deprecated support of universal newlines mode from ↵ | Serhiy Storchaka | 2016-06-11 | 1 | -163/+4 |
| | | | | | | | | ZipFile.open(). | ||||
* | | Restored test_interleaved. After issue #8886 it was a duplicate of | Serhiy Storchaka | 2016-05-13 | 1 | -4/+5 |
|\ \ | |/ | | | | | test_different_file. | ||||
| * | Restored test_interleaved. After issue #8886 it was a duplicate of | Serhiy Storchaka | 2016-05-13 | 1 | -4/+5 |
| | | | | | | | | test_different_file. | ||||
* | | Issue #26039: zipfile.ZipFile.open() can now be used to write data into a ZIP | Serhiy Storchaka | 2016-05-13 | 1 | -6/+77 |
| | | | | | | | | file, as well as for extracting data. Patch by Thomas Kluyver. | ||||
* | | Issue #23277: Remove unused sys and os imports | Berker Peksag | 2016-04-24 | 1 | -1/+0 |
| | | | | | | | | Patch by Jon Dufresne. | ||||
* | | Issue #26039: Added zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir(). | Serhiy Storchaka | 2016-02-07 | 1 | -0/+15 |
|/ | | | | Patch by Thomas Kluyver. | ||||
* | Issue #25101: Try to create a file to test write access in test_zipfile. | Serhiy Storchaka | 2015-09-19 | 1 | -0/+7 |
|\ | |||||
| * | Issue #25101: Try to create a file to test write access in test_zipfile. | Serhiy Storchaka | 2015-09-19 | 1 | -0/+7 |
| | | |||||
* | | Merge from 3.4. | Larry Hastings | 2015-05-08 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Issue #21520: test_zipfile no longer fails if the word 'bad' appears | Larry Hastings | 2015-05-08 | 1 | -2/+3 |
| | | | | | | | | anywhere in the name of the current directory. | ||||
* | | Issue #23731: Implement PEP 488. | Brett Cannon | 2015-04-13 | 1 | -7/+4 |
| | | | | | | | | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied. | ||||
* | | Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive | Serhiy Storchaka | 2015-03-25 | 1 | -0/+13 |
| | | | | | | | | creation) mode. | ||||
* | | Issue #23252: Added support for writing ZIP files to unseekable streams. | Serhiy Storchaka | 2015-03-22 | 1 | -12/+50 |
| | | |||||
* | | Issue #17753: effective_ids unavailable on Windows. | Berker Peksag | 2015-02-16 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Issue #17753: effective_ids unavailable on Windows. | Berker Peksag | 2015-02-16 | 1 | -1/+3 |
| | | |||||
* | | Issue #17753: Skip test_zipfile tests which require write access to test | Serhiy Storchaka | 2015-02-14 | 1 | -0/+8 |
|\ \ | |/ | | | | | and email.test. | ||||
| * | Issue #17753: Skip test_zipfile tests which require write access to test | Serhiy Storchaka | 2015-02-14 | 1 | -0/+8 |
| | | | | | | | | and email.test. | ||||
| * | Issue #14099: Backout changeset e5bb3044402b (except adapted tests). | Serhiy Storchaka | 2015-01-26 | 1 | -61/+55 |
| | | |||||
* | | Issue #14099: Restored support of writing ZIP files to tellable but | Serhiy Storchaka | 2015-01-26 | 1 | -0/+28 |
| | | | | | | | | non-seekable streams. | ||||
* | | Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects | Serhiy Storchaka | 2014-12-03 | 1 | -26/+95 |
|\ \ | |/ | | | | | | | | | returned by ZipFile.open() can now operate independently of the ZipFile even if the ZipFile was created by passing in a file-like object as the first argument to the constructor. | ||||
| * | Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects | Serhiy Storchaka | 2014-12-03 | 1 | -26/+95 |
| | | | | | | | | | | | | returned by ZipFile.open() can now operate independently of the ZipFile even if the ZipFile was created by passing in a file-like object as the first argument to the constructor. | ||||
* | | Issue #22217: Implemented reprs of classes in the zipfile module. | Serhiy Storchaka | 2014-10-29 | 1 | -0/+31 |
|/ | |||||
* | Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOS | Serhiy Storchaka | 2014-09-23 | 1 | -4/+41 |
| | | | | directory attributes. | ||||
* | Fixed test_large_file_exception. Ported tests for large count of files | Serhiy Storchaka | 2014-09-23 | 1 | -1/+62 |
| | | | | to AbstractTestZip64InSmallFiles. | ||||
* | Issue #21440: test_zipfile: replace last direct calls to os.remove() with | Victor Stinner | 2014-09-03 | 1 | -5/+5 |
| | | | | support.unlink() | ||||
* | Issue #21440: Backport changeset 4ebf97299b18 to branch 3.4, use | Victor Stinner | 2014-09-03 | 1 | -12/+11 |
| | | | | support.rmtree() and support.unlink() in test_zipfile & test_tarfile | ||||
* | Fix issue #14315: The zipfile module now ignores extra fields in the central | Gregory P. Smith | 2014-05-30 | 1 | -0/+15 |
| | | | | | | directory that are too short to be parsed instead of letting a struct.unpack error bubble up as this "bad data" appears in many real world zip files in the wild and is ignored by other zip tools. | ||||
* | Issue #20262: Warnings are raised now when duplicate names are added in the | Serhiy Storchaka | 2014-01-20 | 1 | -3/+6 |
|\ | | | | | | | ZIP file or too long ZIP file comment is truncated. | ||||
| * | Issue #20262: Warnings are raised now when duplicate names are added in the | Serhiy Storchaka | 2014-01-20 | 1 | -2/+5 |
| | | | | | | | | ZIP file or too long ZIP file comment is truncated. | ||||
* | | Issue #20078: Reading malformed zipfiles no longer hangs with 100% CPU | Serhiy Storchaka | 2014-01-09 | 1 | -0/+31 |
|\ \ | |/ | | | | | consumption. | ||||
| * | Issue #20078: Reading malformed zipfiles no longer hangs with 100% CPU | Serhiy Storchaka | 2014-01-09 | 1 | -0/+31 |
| | | | | | | | | consumption. | ||||
* | | Issue #15204: Silence and check the 'U' mode deprecation warnings in tests. | Serhiy Storchaka | 2013-11-24 | 1 | -7/+22 |
| | | | | | | | | Changed deprecation message in the fileinput module. | ||||
* | | Issue #17201: ZIP64 extensions now are enabled by default. | Serhiy Storchaka | 2013-11-23 | 1 | -2/+2 |
| | | | | | | | | Patch by William Mallard. | ||||
* | | add filtering of individual files to PyZipFile | Christian Tismer | 2013-10-22 | 1 | -1/+30 |
| | | | | | | | | | | | | changed output of debug messages to say "path" or "file" extended test for filtering certain files in a package added test for filtering files in a python dir (no package) | ||||
* | | #19274: use captured_stdout() in the test suite; add NEWS entry. | Georg Brandl | 2013-10-21 | 1 | -8/+5 |
| | | |||||
* | | add a filterfunc to zip file.PyZipFile.writepy, issue 19274 | Christian Tismer | 2013-10-21 | 1 | -80/+102 |
| | | |||||
* | | Issue #19053: ZipExtFile.read1() with non-zero argument no more returns empty | Serhiy Storchaka | 2013-09-27 | 1 | -0/+39 |
|\ \ | |/ | | | | | bytes until end of data. |