summaryrefslogtreecommitdiff
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* [3.10] bpo-45419: Fix interfaces on DegenerateFiles.Path (GH-28844)Jason R. Coombs2021-10-101-1/+2
* bpo-42135 Correct version slated for importlib.find_loader removal (GH-28312)...Miss Islington (bot)2021-09-131-1/+1
* bpo-44464: Remove special exclusion for flake8 in the deprecation warnings. (...Miss Islington (bot)2021-06-271-9/+1
* [3.10] bpo-44246: Restore compatibility in entry_points (GH-26468) (GH-26471)Miss Islington (bot)2021-05-311-1/+102
* bpo-44246: Entry points performance improvements. (GH-26467)Miss Islington (bot)2021-05-311-1/+23
* [3.10] bpo-44241: Incorporate changes from importlib_metadata 4.1. (GH-26382)...Miss Islington (bot)2021-05-263-8/+28
* bpo-38693: Prefer f-strings in importlib.resources (importlib_resources 5.0.6...Miss Islington (bot)2021-05-263-9/+6
* bpo-38693: importlib.metadata f-strings (GH-26383)Miss Islington (bot)2021-05-261-5/+4
* bpo-44210: make importlib.metadata._meta.PackageMetadata public (GH-26299)Miss Islington (bot)2021-05-231-0/+2
* [3.10] bpo-43643: Sync with python/importlib_resources@c17a610aad. (GH-26284)...Miss Islington (bot)2021-05-212-1/+3
* bpo-43926: Cleaner metadata with PEP 566 JSON support. (GH-25565)Jason R. Coombs2021-05-027-23/+200
* bpo-43754: Eliminate bindings for partial pattern matches (GH-25229)Brandt Bucher2021-05-021-1/+2
* bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)Mark Shannon2021-04-291-1/+2
* bpo-43780: Sync with importlib_metadata 3.10 (GH-25297)Jason R. Coombs2021-04-243-75/+258
* bpo-38605: Revert making 'from __future__ import annotations' the default (GH...Pablo Galindo2021-04-211-1/+2
* Correct micro release number and add a couple of asserts. (GH-25224)Mark Shannon2021-04-071-1/+1
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-071-19/+62
* bump the bytecode magic number (GH-25225)Dennis Sweeney2021-04-061-1/+1
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-064-7/+37
* bpo-43683: Handle generator entry in bytecode (GH-25138)Mark Shannon2021-04-061-0/+1
* bpo-27129: Update magic numbers and bootstrapping for GH-25069 (GH-25172)Dennis Sweeney2021-04-041-1/+1
* bpo-43720: Update import-related stdlib deprecation messages to say they will...Brett Cannon2021-04-031-3/+6
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-021-1/+4
* bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...Mark Shannon2021-04-011-0/+1
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-302-2/+6
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-263-2/+9
* bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...Brett Cannon2021-03-241-14/+6
* bpo-43428: Improve documentation for importlib.metadata changes. (GH-24858)Jason R. Coombs2021-03-141-2/+18
* bpo-43428: Sync with importlib_metadata 3.7. (GH-24782)Jason R. Coombs2021-03-132-25/+220
* bpo-42129: Add support for resources in namespaces (GH-24670)Jason R. Coombs2021-03-046-88/+270
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-261-1/+2
* bpo-42382: In importlib.metadata, `EntryPoint` objects now expose `dist` (#23...Jason R. Coombs2020-12-311-66/+119
* bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...Mark Shannon2020-12-171-1/+2
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-043-8/+23
* bpo-42202: Store func annotations as a tuple (GH-23316)Yurii Karabas2020-11-251-1/+2
* bpo-42403: Use @staticmethod in importlib (GH-23395)Victor Stinner2020-11-202-16/+16
* bpo-42403: Simplify importlib external bootstrap (GH-23397)Victor Stinner2020-11-193-65/+55
* bpo-42403: Fix pyflakes warnings in importlib (GH-23396)Victor Stinner2020-11-193-4/+0
* Bump magic number. (GH-23245)Mark Shannon2020-11-121-1/+2
* bpo-41490: ``path`` and ``contents`` to aggressively close handles (#22915)Jason R. Coombs2020-10-253-16/+32
* bpo-42089: Sync with current cpython branch of importlib_metadata (GH-22775)Barry Warsaw2020-10-191-0/+9
* bpo-38605: bump the magic number for 'annotations' future (#22630)Batuhan Taskaya2020-10-101-1/+2
* bpo-40924: Ensure importlib.resources.path returns an extant path (GH-20857)Jason R. Coombs2020-06-291-1/+12
* bpo-41006: importlib.util no longer imports typing (GH-20938)Victor Stinner2020-06-173-49/+53
* bpo-39791 native hooks for importlib.resources.files (GH-20576)Jason R. Coombs2020-06-075-115/+110
* bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-20659)Jason R. Coombs2020-06-051-5/+25
* bpo-19468: delete unnecessary instance check in importlib.reload() (GH-19424)Furkan Önder2020-06-051-4/+4
* bpo-39791: Add files() to importlib.resources (GH-19722)Jason R. Coombs2020-05-083-102/+217
* bpo-40443: Remove unused imports in stdlib (GH-19815)Victor Stinner2020-05-011-2/+1
* bpo-40050: Fix importlib._bootstrap_external (GH-19135)Victor Stinner2020-03-241-21/+13