| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-44439: _ZipWriteFile.write() handle buffer protocol correctly (GH-29468) | Miss Islington (bot) | 2022-03-08 | 1 | -0/+9 |
|
|
* | bpo-43651: Fix EncodingWarning in zipfile (GH-25650) | Inada Naoki | 2021-04-27 | 1 | -28/+28 |
|
|
* | bpo-42090: zipfile.Path.joinpath now accepts multiple arguments (GH-22976) | Jason R. Coombs | 2020-12-16 | 1 | -0/+6 |
|
|
* | bpo-42043: Add support for zipfile.Path subclasses (#22716) | Jason R. Coombs | 2020-10-25 | 1 | -106/+206 |
|
|
* | bpo-40564: Avoid copying state from extant ZipFile. (GH-22371) | Jason R. Coombs | 2020-10-03 | 1 | -0/+33 |
|
|
* | bpo-40105: ZipFile truncate in append mode with shorter comment (GH-19337) | Jan Mazur | 2020-09-28 | 1 | -0/+3 |
|
|
* | bpo-40275: Use new test.support helper submodules in tests (GH-21317) | Hai Shi | 2020-07-06 | 1 | -3/+4 |
|
|
* | bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040) | Serhiy Storchaka | 2020-06-22 | 1 | -0/+5 |
|
|
* | bpo-40275: More lazy imports in test.support (GH-20131) | Hai Shi | 2020-05-18 | 1 | -20/+20 |
|
|
* | bpo-40286: Use random.randbytes() in tests (GH-19575) | Victor Stinner | 2020-04-17 | 1 | -7/+4 |
|
|
* | bpo-39667: Sync zipp 3.0 (GH-18540) | Jason R. Coombs | 2020-02-29 | 1 | -1/+7 |
|
|
* | bpo-39595: Improve zipfile.Path performance (#18406) | Jason R. Coombs | 2020-02-12 | 1 | -39/+103 |
|
|
* | bpo-39502: Skip test_zipfile.test_add_file_after_2107() on AIX (GH-18282) | Victor Stinner | 2020-01-30 | 1 | -1/+6 |
|
|
* | bpo-39460: Fix test_zipfile.test_add_file_after_2107() (GH-18247) | Victor Stinner | 2020-01-29 | 1 | -0/+12 |
|
|
* | bpo-37523: Raise ValueError for I/O operations on a closed zipfile.ZipExtFile... | Daniel Hillier | 2019-11-30 | 1 | -0/+14 |
|
|
* | bpo-36993: Improve error reporting for zipfiles with bad zip64 extra data. (G... | Daniel Hillier | 2019-10-29 | 1 | -0/+222 |
|
|
* | bpo-38334: Fix seeking backward on an encrypted zipfile.ZipExtFile. (GH-16937) | Serhiy Storchaka | 2019-10-27 | 1 | -0/+38 |
|
|
* | bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632) | Berker Peksag | 2019-09-12 | 1 | -0/+11 |
|
|
* | bpo-28494: Test existing zipfile working behavior. (GH-15853) | Gregory P. Smith | 2019-09-10 | 1 | -0/+40 |
|
|
* | bpo-26185: Fix repr() on empty ZipInfo object (#13441) | Mickaël Schoentgen | 2019-09-09 | 1 | -0/+27 |
|
|
* | bpo-37772: fix zipfile.Path.iterdir() outputs (GH-15170) | shireenrao | 2019-08-24 | 1 | -46/+63 |
|
|
* | bpo-37520: Correct behavior for zipfile.Path.parent (GH-14638) | Jason R. Coombs | 2019-07-07 | 1 | -0/+11 |
|
|
* | Remove unused imports in tests (GH-14518) | Victor Stinner | 2019-07-01 | 1 | -2/+0 |
|
|
* | Add support for .parent and .joinpath in zipfile.Path (#13213) | Jason R. Coombs | 2019-05-09 | 1 | -0/+14 |
|
|
* | bpo-36832: add zipfile.Path (#13153) | Jason R. Coombs | 2019-05-08 | 1 | -3/+113 |
|
|
* | bpo-36434: Properly handle writing errors in ZIP files. (GH-12559) | Serhiy Storchaka | 2019-03-30 | 1 | -0/+37 |
|
|
* | bpo-34341: Fix appending to ZIP archives with the ZIP64 extension. (GH-8683) | Serhiy Storchaka | 2018-09-17 | 1 | -0/+14 |
|
|
* | bpo-34097: Polish API design (GH-8725) | Marcel Plch | 2018-08-31 | 1 | -4/+4 |
|
|
* | bpo-34325: Skip zipfile test for large timestamps when filesystem don't suppo... | Marcel Plch | 2018-08-03 | 1 | -1/+5 |
|
|
* | bpo-34097: Add support for zipping files older than 1980-01-01 (GH-8270) | Marcel Plch | 2018-08-02 | 1 | -0/+16 |
|
|
* | bpo-34035: Fix several AttributeError in zipfile seek() methods. (GH-8527) | Mickaël Schoentgen | 2018-07-29 | 1 | -0/+4 |
|
|
* | bpo-22908: Add seek and tell functionality to ZipExtFile (GH-4966) | John Jolly | 2018-01-30 | 1 | -0/+34 |
|
|
* | bpo-21417: Add compresslevel= to the zipfile module (GH-5385) | Bo Bayles | 2018-01-30 | 1 | -4/+36 |
|
|
* | Fix miscellaneous typos (#4275) | luzpaz | 2017-11-05 | 1 | -1/+1 |
|
|
* | bpo-30017: Allowed calling the close() method of the zip entry writer object ... | Serhiy Storchaka | 2017-04-12 | 1 | -0/+42 |
|
|
* | 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 |
|
|
* | bpo-28231: The zipfile module now accepts path-like objects for external path... | Serhiy Storchaka | 2017-03-08 | 1 | -15/+102 |
|
|
* | 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 |
|/ / |
|
* | | 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 |
|\ \
| |/ |
|
| * | Issue #26293: Fixed writing ZIP files that starts not from the start of the | Serhiy Storchaka | 2016-10-07 | 1 | -0/+43 |
|
|
* | | Issue #24693: Changed some RuntimeError's in the zipfile module to more | Serhiy Storchaka | 2016-09-10 | 1 | -20/+20 |
|
|
* | | Issue #27029: Removed deprecated support of universal newlines mode from ZipF... | Serhiy Storchaka | 2016-06-11 | 1 | -163/+4 |
|
|
* | | Restored test_interleaved. After issue #8886 it was a duplicate of | Serhiy Storchaka | 2016-05-13 | 1 | -4/+5 |
|\ \
| |/ |
|
| * | Restored test_interleaved. After issue #8886 it was a duplicate of | Serhiy Storchaka | 2016-05-13 | 1 | -4/+5 |
|
|