summaryrefslogtreecommitdiffstats
path: root/Lib/zipfile.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-37523: Raise ValueError for I/O operations on a closed ↵Daniel Hillier2019-11-301-0/+10
| | | | | zipfile.ZipExtFile. (GH-14658) Raises ValueError when calling the following on a closed zipfile.ZipExtFile: read, readable, seek, seekable, tell.
* bpo-38635: Simplify decoding the ZIP64 extra field and make it tolerant to ↵Serhiy Storchaka2019-11-091-37/+16
| | | | extra data. (GH-16988)
* bpo-36993: Improve error reporting for zipfiles with bad zip64 extra data. ↵Daniel Hillier2019-10-291-0/+12
| | | | (GH-14656)
* bpo-38334: Fix seeking backward on an encrypted zipfile.ZipExtFile. (GH-16937)Serhiy Storchaka2019-10-271-26/+31
| | | Test by Daniel Hillier.
* bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632)Berker Peksag2019-09-121-0/+1
|
* bpo-26185: Fix repr() on empty ZipInfo object (#13441)Mickaël Schoentgen2019-09-091-5/+3
| | | | | | | | | | | | * bpo-26185: Fix repr() on empty ZipInfo object It was failing on AttributeError due to inexistant but required attributes file_size and compress_size. They are now initialized to 0 in ZipInfo.__init__(). * Remove useless hasattr() in ZipInfo._open_to_write() * Completely remove file_size setting in _open_to_write().
* bpo-37772: fix zipfile.Path.iterdir() outputs (GH-15170)shireenrao2019-08-241-6/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix Path._add_implied_dirs to include all implied directories * fix Path._add_implied_dirs to include all implied directories * Optimize code by using sets instead of lists * 📜🤖 Added by blurb_it. * fix Path._add_implied_dirs to include all implied directories * Optimize code by using sets instead of lists * 📜🤖 Added by blurb_it. * Add tests to zipfile.Path.iterdir() fix * Update test for zipfile.Path.iterdir() * remove whitespace from test file * Rewrite NEWS blurb to describe the user-facing impact and avoid implementation details. * remove redundant [] within set comprehension * Update to use unique_everseen to maintain order and other suggestions in review * remove whitespace and add back add_dirs in tests * Add new standalone function parents using posixpath to get parents of a directory * removing whitespace (sorry) * Remove import pathlib from zipfile.py * Rewrite _parents as a slice on a generator of the ancestry of a path. * Remove check for '.' and '/', now that parents no longer returns those. * Separate calculation of implied dirs from adding those * Re-use _implied_dirs in tests for generating zipfile with dir entries. * Replace three fixtures (abcde, abcdef, abde) with one representative example alpharep. * Simplify implementation of _implied_dirs by collapsing the generation of parent directories for each name.
* bpo-37520: Correct behavior for zipfile.Path.parent (GH-14638)Jason R. Coombs2019-07-071-1/+1
| | | | | | * bpo-37520: Correct behavior for zipfile.Path.parent * 📜🤖 Added by blurb_it.
* Fix typos in docs and docstrings (GH-13745)Xtreak2019-06-021-1/+1
|
* bpo-22102: Fixes zip files with disks set to 0 (GH-5985)Francisco Facioni2019-05-281-1/+1
|
* Add support for .parent and .joinpath in zipfile.Path (#13213)Jason R. Coombs2019-05-091-1/+10
|
* bpo-36832: add zipfile.Path (#13153)Jason R. Coombs2019-05-081-5/+139
| | | | | | | | | | | | | | | | | | | | | | | | * bpo-36832: add zipfile.Path * bpo-36832: add documentation for zipfile.Path * 📜🤖 Added by blurb_it. * Remove module reference from blurb. * Sort the imports * Update docstrings and docs per recommendations. * Rely on test.support.temp_dir * Signal that 'root' is the parameter. * Correct spelling of 'mod' * Convert docstring to comment for brevity. * Fix more errors in the docs
* bpo-36434: Properly handle writing errors in ZIP files. (GH-12559)Serhiy Storchaka2019-03-301-41/+44
| | | | | Errors during writing no longer prevent to properly close the ZIP file.
* Fix typo duplicate period in a docstring in the zipfile module. (GH-12326)nick sung2019-03-141-1/+1
|
* bpo-32035: Fix words about strings and bytes in zipfile documentation. ↵Serhiy Storchaka2018-11-251-2/+2
| | | | (GH-10592)
* bpo-34472: Add data descriptor signature to zipfile (GH-8871)Silas Sewell2018-09-181-2/+4
| | | | This makes streamed zips compatible with MacOS Archive Utility and other applications.
* bpo-34341: Fix appending to ZIP archives with the ZIP64 extension. (GH-8683)Serhiy Storchaka2018-09-171-0/+22
|
* bpo-34097: Polish API design (GH-8725)Marcel Plch2018-08-311-4/+4
| | | Move strict_timestamps to constructor.
* bpo-34097: Add support for zipping files older than 1980-01-01 (GH-8270)Marcel Plch2018-08-021-3/+9
| | | | | ZipFile can zip files older than 1980-01-01 and newer than 2107-12-31 using a new strict_timestamps parameter at the cost of setting the timestamp to the limit.
* bpo-34035: Fix several AttributeError in zipfile seek() methods. (GH-8527)Mickaël Schoentgen2018-07-291-4/+3
|
* bpo-30693: zip+tarfile: sort directory listing (#2263)Bernhard M. Wiedemann2018-01-311-3/+3
| | | | | | tarfile and zipfile now sort directory listing to generate tar and zip archives in a more reproducible way. See also https://reproducible-builds.org/docs/stable-inputs/ on that topic.
* bpo-22908: Add seek and tell functionality to ZipExtFile (GH-4966)John Jolly2018-01-301-0/+82
| | | | | This allows for nested zip files, tar files within zip files, zip files within tar files, etc. Contributed by: John Jolly
* bpo-21417: Add compresslevel= to the zipfile module (GH-5385)Bo Bayles2018-01-301-8/+35
| | | | | | This allows the compression level to be specified when writing zipfiles (for the entire file *and* overridden on a per-file basis). Contributed by Bo Bayles
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-5/+1
| | | | | | * Remove Setup.config * Always define WITH_THREAD for compatibility.
* Revert bpo-26293 for zipfile breakage. See also bpo-29094. (#1484)Serhiy Storchaka2017-05-061-14/+13
|
* bpo-30017: Allowed calling the close() method of the zip entry writer object ↵Serhiy Storchaka2017-04-121-0/+4
| | | | | | (#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 Storchaka2017-04-071-5/+2
|
* bpo-10030: Sped up reading encrypted ZIP files by 2 times. (#550)Serhiy Storchaka2017-03-301-57/+55
|
* bpo-29774: Improve error reporting for corrupted extra field in ZIP file. (#583)Serhiy Storchaka2017-03-091-1/+3
|
* bpo-28231: The zipfile module now accepts path-like objects for external ↵Serhiy Storchaka2017-03-081-4/+16
| | | | paths. (#511)
* Issue #29094: Offsets in a ZIP file created with extern file object and modesSerhiy Storchaka2017-01-011-2/+3
|\ | | | | | | "w" and "x" now are relative to the start of the file.
| * Issue #29094: Offsets in a ZIP file created with extern file object and modesSerhiy Storchaka2017-01-011-2/+3
| |\ | | | | | | | | | "w" and "x" now are relative to the start of the file.
| | * Issue #29094: Offsets in a ZIP file created with extern file object and modesSerhiy Storchaka2017-01-011-2/+3
| | | | | | | | | | | | "w" and "x" now are relative to the start of the file.
* | | Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
| | |
* | | Issue #28115: Command-line interface of the zipfile module now uses argparse.Serhiy Storchaka2016-10-231-40/+37
| | | | | | | | | | | | Added support of long options.
* | | Issue #26293: Fixed writing ZIP files that starts not from the start of theSerhiy Storchaka2016-10-071-15/+15
|\ \ \ | |/ / | | | | | | | | | 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 theSerhiy Storchaka2016-10-071-15/+15
| |\ \ | | |/ | | | | | | | | | 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 theSerhiy Storchaka2016-10-071-15/+15
| | | | | | | | | | | | | | | file. Offsets in ZIP file now are relative to the start of the archive in conforming to the specification.
* | | Issue #28102: The zipfile module CLI now prints usage to stderr.Serhiy Storchaka2016-09-131-5/+5
|/ / | | | | | | Patch by Stephen J. Turnbull.
* | Issue #24693: Changed some RuntimeError's in the zipfile module to moreSerhiy Storchaka2016-09-101-28/+28
| | | | | | | | appropriate types. Improved some error messages and debugging output.
* | Issue #27029: Removed deprecated support of universal newlines mode from ↵Serhiy Storchaka2016-06-111-46/+4
| | | | | | | | ZipFile.open().
* | Issue #26039: Document ZipInfo.is_dir() and make force_zip64 keyword-only.Serhiy Storchaka2016-05-151-1/+2
| | | | | | | | Patch by Thomas Kluyver.
* | Issue #26039: zipfile.ZipFile.open() can now be used to write data into a ZIPSerhiy Storchaka2016-05-131-105/+185
| | | | | | | | file, as well as for extracting data. Patch by Thomas Kluyver.
* | Issue #26039: Added zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir().Serhiy Storchaka2016-02-071-28/+47
|/ | | | Patch by Thomas Kluyver.
* Issue #22341: Drop Python 2 workaround and document CRC initial valueMartin Panter2015-12-111-4/+4
| | | | Also align the parameter naming in binascii to be consistent with zlib.
* Issue #25624: ZipFile now always writes a ZIP_STORED header for directorySerhiy Storchaka2015-11-221-1/+3
|\ | | | | | | entries. Patch by Dingyuan Wang.
| * Issue #25624: ZipFile now always writes a ZIP_STORED header for directorySerhiy Storchaka2015-11-221-1/+3
| | | | | | | | entries. Patch by Dingyuan Wang.
| * Issue #14099: Backout changeset e5bb3044402b (except adapted tests).Serhiy Storchaka2015-01-261-64/+39
| |
* | Issue #25364: zipfile now works in threads disabled builds.Serhiy Storchaka2015-10-101-1/+4
| |
* | Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-22/+35
| | | | | | | | | | | | 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.