summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-47004: Sync with importlib_metadata 4.11.3. (GH-31854). (GH-31859)Jason R. Coombs2022-03-131-2/+11
* [3.9] bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_cach...Petr Viktorin2022-02-021-1/+10
* [3.9] bpo-46474: Avoid REDoS in EntryPoint.pattern (sync with importlib_metad...Jason R. Coombs2022-01-231-2/+2
* [3.9] bpo-46105: Honor spec when generating requirement specs with urls and e...Jason R. Coombs2021-12-171-3/+12
* [3.9] [bpo-45765] Fix distribution discovery on empty path. (GH-29487). (GH-2...Jason R. Coombs2021-11-131-1/+1
* bpo-44070: No longer eagerly makes import filenames absolute, except for exte...Steve Dower2021-05-101-5/+5
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-071-19/+89
* [3.9] bpo-40924: Remove protocol for supplying Traversable objects from loade...Jason R. Coombs2020-06-141-11/+1
* [3.9] bpo-40924: Revert "bpo-39791 native hooks for importlib.resources.files...Ɓukasz Langa2020-06-095-110/+115
* bpo-39791 native hooks for importlib.resources.files (GH-20576)Miss Islington (bot)2020-06-085-115/+110
* bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-2065...Miss Islington (bot)2020-06-051-5/+25
* 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
* bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627)idomic2020-03-091-2/+2
* bpo-38091: Import deadlock detection causes deadlock (GH-17518)Armin Rigo2020-03-031-0/+9
* Revert "bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags p...Victor Stinner2020-02-191-1/+1
* bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#...idomic2020-02-171-1/+1
* bpo-39595: Improve zipfile.Path performance (#18406)Jason R. Coombs2020-02-121-5/+7
* bpo-39320: Handle unpacking of **values in compiler (GH-18141)Mark Shannon2020-01-271-1/+2
* bpo-39320: Handle unpacking of *values in compiler (GH-17984)Mark Shannon2020-01-231-1/+3
* bpo-39336: Allow packages to not let their child modules be set on them (#18006)Dino Viehland2020-01-231-1/+6
* bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754)Mark Shannon2020-01-141-1/+2
* bpo-39297: Update for importlib_metadata 1.4. (GH-17947)Jason R. Coombs2020-01-111-36/+72
* bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 (GH-17568)Jason R. Coombs2019-12-111-1/+22
* Produce cleaner bytecode for 'with' and 'async with' by generating separate c...Mark Shannon2019-11-211-1/+3
* Remove binding of captured exceptions when not used to reduce the chances of ...Pablo Galindo2019-11-191-1/+1
* bpo-38121: Sync importlib.metadata with 0.22 backport (GH-15993)Jason R. Coombs2019-09-122-65/+78
* bpo-35923: Update the BuiltinImporter to use loader._ORIGIN instead of a hard...Dong-hee Na2019-09-111-2/+4
* bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840)Jason R. Coombs2019-09-102-22/+59
* bpo-38010 Sync importlib.metadata with importlib_metadata 0.20. (GH-15646)Jason R. Coombs2019-09-021-3/+15
* bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073)Zackery Spytz2019-08-251-1/+2
* bpo-37830: Fix compilation of break and continue in finally. (GH-15320)Serhiy Storchaka2019-08-241-1/+2
* bpo-37685: Fixed __eq__, __lt__ etc implementations in some classes. (GH-14952)Serhiy Storchaka2019-08-081-1/+1
* Make importlib.metadata a simple module (#15153)Barry Warsaw2019-08-061-0/+0
* bpo-37444: Update differing exception between builtins and importlib (GH-14869)Ngalim Siregar2019-08-032-3/+3
* bpo-37697: Sync with importlib_metadata 0.19 (#14993)Jason R. Coombs2019-07-282-11/+20
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-211-1/+1
* bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Pablo Galindo2019-07-141-1/+3
* bpo-35224: Bump the pyc magic number by 1 instead of by 10 in last modificati...Pablo Galindo2019-06-231-2/+2
* bpo-35224: Bump the pyc magic number after the change in MAP_ADD (GH-14313)Pablo Galindo2019-06-221-1/+3
* cross port importlib-metadata PR #76 (#13903)Anthony Sottile2019-06-071-0/+2
* Don't crash if there exists an EGG-INFO directory on sys.path (#13667)Anthony Sottile2019-05-301-1/+2
* bpo-34632: Add importlib.metadata (GH-12547)Jason R. Coombs2019-05-242-0/+446
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-2/+6
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-1/+2
* bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690)Anthony Sottile2019-03-081-0/+3
* bpo-35887: Add make regen-importlib step to importlib._bootstrap docstring (G...Nina Zakharenko2019-02-131-3/+3
* bpo-35321: Set the spec origin to frozen in frozen modules (#11732)Nina Zakharenko2019-02-051-2/+4
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Serhiy Storchaka2018-11-051-1/+1