summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
Commit message (Expand)AuthorAgeFilesLines
* gh-93963: Remove ResourceReaderDefaultsTests (GH-96598)Jason R. Coombs2022-09-051-28/+0
* gh-96280: suppress deprecation warning in test_importlib (GH-96281)Irit Katriel2022-08-261-1/+3
* Update the magic number in test_util.py (#95714)Pablo Galindo Salgado2022-08-051-1/+1
* gh-94619: Remove long deprecated methods module_repr() and load_module() (#94...Barry Warsaw2022-08-055-113/+0
* gh-93963: Remove usage of deprecated interface from importlib.abc. (#95217)Jason R. Coombs2022-07-272-2/+2
* gh-95218: Move tests for importlib.resources into test_importlib.resources. (...Jason R. Coombs2022-07-2532-9/+9
* gh-93259: Validate arg to ``Distribution.from_name``. (GH-94270)Jason R. Coombs2022-06-263-45/+68
* gh-94217: Skip import tests when _testcapi is a builtin (GH-94218)Christian Heimes2022-06-242-1/+13
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-132-2/+0
* gh-93461: Invalidate sys.path_importer_cache entries with relative paths (GH-...Christian Heimes2022-06-102-3/+14
* test_threaded_import: Fix unittest.main spelling (GH-93114)Florian Bruhin2022-05-251-1/+1
* gh-92265: set meta_path and path_hooks correctly in test_reload_namespace_cha...Filipe Laíns2022-05-161-1/+2
* bpo-45046: Support context managers in unittest (GH-28045)Serhiy Storchaka2022-05-082-20/+6
* 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