summaryrefslogtreecommitdiffstats
path: root/Lib/zipimport.py
Commit message (Expand)AuthorAgeFilesLines
* gh-103200: Fix performance issues with `zipimport.invalidate_caches()` (GH-10...Desmond Cheong2023-07-071-21/+25
* GH-87235: Make sure "python /dev/fd/9 9</path/to/script.py" works on macOS (#...Ronald Oussoren2022-11-271-98/+105
* gh-91181: drop support for bytes on sys.path (GH-31934)Thomas Grainger2022-07-171-2/+1
* gh-94379: Remove zipimport find_loader() and find_module() methods (#94380)Victor Stinner2022-07-051-58/+0
* bpo-45183: don't raise an exception when calling zipimport.zipimporter.find_s...Brett Cannon2021-09-171-1/+1
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-061-0/+6
* bpo-14678: Update zipimport to support importlib.invalidate_caches() (GH-24159)Desmond Cheong2021-03-081-0/+10
* bpo-24792: Fix zipimporter masking the cause of import errors (GH-22204)Irit Katriel2020-12-191-18/+20
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-041-1/+5
* bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)Brett Cannon2020-11-131-1/+33
* bpo-39791 native hooks for importlib.resources.files (GH-20576)Jason R. Coombs2020-06-081-76/+2
* bpo-39033: Fix NameError in zipimport during hash validation (GH-17588)Xtreak2019-12-151-1/+1
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-2/+2
* bpo-34726: Fix handling of hash-based pycs in zipimport. (GH-10327)Elvis Pranskevichus2018-11-071-29/+66
* bpo-5950: Support reading zips with comments in zipimport (#9548)Zackery Spytz2018-09-251-5/+31
* bpo-25711: Move _ZipImportResourceReader from importlib to zipimport. (GH-9406)Serhiy Storchaka2018-09-191-2/+81
* bpo-25711: Rewrite zipimport in pure Python. (GH-6809)Serhiy Storchaka2018-09-181-0/+650