summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
Commit message (Expand)AuthorAgeFilesLines
...
* gh-91298: Refine traversable (apply changes from importlib_resources 5.7.1) (...Jason R. Coombs2022-04-171-1/+1
* bpo-46126: Restore docstrings in importlib.metadata tests. (#32288)Jason R. Coombs2022-04-172-24/+44
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-072-1/+6
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-222-0/+9
* bpo-47004: Sync with importlib_metadata 4.11.3. (#31854)Jason R. Coombs2022-03-131-0/+10
* bpo-46246: add missing __slots__ to importlib.metadata.DeprecatedList (GH-30452)Arie Bovenberg2022-02-111-0/+5
* bpo-46616: Ensures test_importlib.test_windows cleans up registry keys after ...Steve Dower2022-02-021-3/+14
* bpo-46474: Apply changes from importlib_metadata 4.10.0 (GH-30802)Jason R. Coombs2022-01-231-16/+1
* bpo-46425: Partially revert "bpo-46425: fix direct invocation of `test_import...Jason R. Coombs2022-01-2310-40/+22
* bpo-46425: fix direct invocation of `test_importlib` (GH-30682)Nikita Sobolev2022-01-2239-61/+74
* bpo-46118: Move importlib.resources to its own package. (#30176)Jason R. Coombs2021-12-311-1/+1
* bpo-46125: Refactor tests to test traversable API directly. Includes changes ...Jason R. Coombs2021-12-196-189/+129
* bpo-44893: Implement EntryPoint as simple class with attributes. (GH-30150)Jason R. Coombs2021-12-165-42/+90
* bpo-46105: Honor spec when generating requirement specs with urls and extras....Jason R. Coombs2021-12-161-0/+2
* bpo-45514: Deprecate importlib resources legacy functions. (GH-29036)Jason R. Coombs2021-11-246-81/+144
* bpo-45703: Invalidate _NamespacePath cache on importlib.invalidate_ca… (GH-...Miro Hrončok2021-11-231-0/+35
* bpo-35673: Add a public alias for namespace package __loader__ attribute (#29...Barry Warsaw2021-10-201-0/+7
* bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)Eric Snow2021-10-142-25/+36
* bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow2021-10-052-18/+48
* Rearrage the finder tests. (gh-28740)Eric Snow2021-10-051-30/+56
* bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...Eric Snow2021-10-052-23/+60
* bpo-45020: Add more test cases for frozen modules. (gh-28664)Eric Snow2021-10-011-13/+66
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-211-1/+1
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-192-19/+12
* bpo-45019: Clean up the frozen __hello__ module. (gh-28374)Eric Snow2021-09-151-14/+21
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-142-96/+123
* bpo-44784: Apply changes from importlib_metadata 4.6.3 (GH-27508)Jason R. Coombs2021-07-311-6/+12
* bpo-44771: Apply changes from importlib_resources 5.2.1 (GH-27436)Jason R. Coombs2021-07-3010-187/+363
* bpo-44451: Reset DeprecationWarning filters in test_importlib.test_entry_poin...Miro Hrončok2021-06-181-0/+1
* bpo-44246: Restore compatibility in entry_points (GH-26468)Jason R. Coombs2021-05-311-0/+16
* bpo-44246: Entry points performance improvements. (GH-26467)Jason R. Coombs2021-05-311-0/+4
* bpo-38693: Prefer f-strings in importlib.resources (importlib_resources 5.0.6...Jason R. Coombs2021-05-262-3/+3
* bpo-43643: Sync with python/importlib_resources@c17a610aad. (GH-26284)Jason R. Coombs2021-05-211-0/+6
* bpo-43926: Cleaner metadata with PEP 566 JSON support. (GH-25565)Jason R. Coombs2021-05-023-3/+37
* bpo-43864: Silence deprecation warning in test_importlib.test_module_found an...Shreyan Avigyan2021-04-271-2/+6
* bpo-43780: Sync with importlib_metadata 3.10 (GH-25297)Jason R. Coombs2021-04-242-0/+14
* Silence find_module() DeprecationWarning on Windows tests (GH-25563)Brett Cannon2021-04-231-1/+4
* bpo-43105: Importlib now resolves relative paths when creating module spec ob...Steve Dower2021-04-072-4/+60
* bpo-42135: Deprecate implementations of find_module() and find_loader() (GH-2...Brett Cannon2021-04-069-27/+44
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25181)Inada Naoki2021-04-058-15/+15
* bpo-43672: raise ImportWarning when calling find_loader() (GH-25119)Brett Cannon2021-04-028-92/+70
* bpo-42134: Raise ImportWarning when calling find_module() in the import syste...Brett Cannon2021-03-302-4/+14
* bpo-42136: Deprecate module_repr() as found in importlib (GH-25022)Brett Cannon2021-03-263-6/+29
* bpo-42137: have ModuleType.__repr__ prefer __spec__ over module_repr() (GH-24...Brett Cannon2021-03-242-9/+2
* bpo-43517: Fix false positive in detection of circular imports (#24895)Antoine Pitrou2021-03-203-1/+78
* bpo-43428: Sync with importlib_metadata 3.7. (GH-24782)Jason R. Coombs2021-03-134-13/+88
* bpo-42129: Add support for resources in namespaces (GH-24670)Jason R. Coombs2021-03-0413-102/+304
* Fix failed merge of bpo-43288. (GH-24614)Neil Schemenauer2021-02-211-2/+3
* bpo-43288: Fix bug in test_importlib test. (GH-24612)Neil Schemenauer2021-02-211-0/+4
* bpo-42382: In importlib.metadata, `EntryPoint` objects now expose `dist` (#23...Jason R. Coombs2020-12-314-80/+158