[issue42131] [zipimport] Update zipimport to use specs

2020-11-16 Thread Brett Cannon
Change by Brett Cannon : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42131] [zipimport] Update zipimport to use specs

2020-11-13 Thread Brett Cannon
Brett Cannon added the comment: New changeset d2e94bb0848e04a90efa51be401f0ce8a9e252f2 by Brett Cannon in branch 'master': bpo-42131: Add PEP 451-related methods to zipimport (GH-23187) https://github.com/python/cpython/commit/d2e94bb0848e04a90efa51be401f0ce8a9e252f2 --

[issue42131] [zipimport] Update zipimport to use specs

2020-11-06 Thread Brett Cannon
Change by Brett Cannon : -- keywords: +patch pull_requests: +22090 stage: resolved -> patch review pull_request: https://github.com/python/cpython/pull/23187 ___ Python tracker

[issue42131] [zipimport] Update zipimport to use specs

2020-11-06 Thread Brett Cannon
Change by Brett Cannon : -- assignee: -> brett.cannon resolution: duplicate -> status: closed -> open superseder: zipimport is not PEP 3147 or PEP 488 compliant -> ___ Python tracker

[issue42131] [zipimport] Update zipimport to use specs

2020-11-04 Thread Brett Cannon
Change by Brett Cannon : -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue42131] [zipimport] Update zipimport to use specs

2020-11-04 Thread Brett Cannon
Change by Brett Cannon : -- superseder: -> zipimport is not PEP 3147 or PEP 488 compliant ___ Python tracker ___ ___

[issue42131] [zipimport] Update zipimport to use specs

2020-10-23 Thread Brett Cannon
New submission from Brett Cannon : zipimport only supports old PEP 302 APIs and not PEP 451 module specs (i.e. it uses load_module() instead of create_module()/exec_module(), find_mdoule() instead of find_spec()). Uses of both load_module() and find_module() are documented as deprecated for