summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.10.0rc1v3.10.0rc1Pablo Galindo2021-08-021-1/+1
* bpo-44784: Apply changes from importlib_metadata 4.6.3 (GH-27508) (#27510)Miss Islington (bot)2021-08-011-6/+12
* bpo-44451: Reset DeprecationWarning filters in test_importlib.test_entry_poin...Miss Islington (bot)2021-06-181-0/+1
* [3.10] bpo-44246: Restore compatibility in entry_points (GH-26468) (GH-26471)Miss Islington (bot)2021-05-311-0/+16
* bpo-44246: Entry points performance improvements. (GH-26467)Miss Islington (bot)2021-05-311-0/+4
* bpo-38693: Prefer f-strings in importlib.resources (importlib_resources 5.0.6...Miss Islington (bot)2021-05-262-3/+3
* [3.10] bpo-43643: Sync with python/importlib_resources@c17a610aad. (GH-26284)...Miss Islington (bot)2021-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
* bpo-26131: Deprecate usage of load_module() (GH-23469)Brett Cannon2020-12-0412-143/+254
* bpo-41490: ``path`` and ``contents`` to aggressively close handles (#22915)Jason R. Coombs2020-10-253-0/+79
* bpo-42089: Sync with current cpython branch of importlib_metadata (GH-22775)Barry Warsaw2020-10-192-6/+15
* bpo-40275: Fix failed test cases by using test helpers (GH-21811)Hai Shi2020-08-102-6/+6
* bpo-40275: Use new test.support helper submodules in tests (GH-21727)Hai Shi2020-08-0411-26/+32
* bpo-40275: Use new test.support helper submodules in tests (GH-21314)Hai Shi2020-07-061-2/+3
* bpo-40924: Ensure importlib.resources.path returns an extant path (GH-20857)Jason R. Coombs2020-06-291-0/+9
* bpo-41006: importlib.util no longer imports typing (GH-20938)Victor Stinner2020-06-171-2/+2
* bpo-39791: Support file systems that cannot support non-ascii filenames (skip...Jason R. Coombs2020-06-072-2/+18
* bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-20659)Jason R. Coombs2020-06-053-10/+47
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-272-7/+9
* bpo-40275: More lazy imports in test.support (GH-20131)Hai Shi2020-05-181-2/+2
* bpo-39791: Add files() to importlib.resources (GH-19722)Jason R. Coombs2020-05-082-0/+40
* Clean up compatibility code in importlib fixtures (#19156)Jason R. Coombs2020-04-151-16/+2
* bpo-40029 mark test_importlib.test_zip as requiring zlib (#19105)Roman Yurchak2020-03-241-0/+4
* bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)Victor Stinner2020-03-171-23/+0
* bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627)idomic2020-03-092-1/+7
* bpo-39769: Fix compileall ddir for subpkgs. (GH-18676)Gregory P. Smith2020-02-291-0/+11
* bpo-39595: Improve zipfile.Path performance (#18406)Jason R. Coombs2020-02-123-2/+63
* bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 (GH-17568)Jason R. Coombs2019-12-111-0/+33
* bpo-38839: Fix some unused functions in tests (GH-17189)Adam Johnson2019-11-191-0/+1
* Fix typo in test_api.py. (GH-16119)Benjamin Peterson2019-09-131-1/+1
* bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840)Jason R. Coombs2019-09-102-11/+23
* bpo-38010 Sync importlib.metadata with importlib_metadata 0.20. (GH-15646)Jason R. Coombs2019-09-021-0/+2
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-303-3/+3
* bpo-37830: Fix compilation of break and continue in finally. (GH-15320)Serhiy Storchaka2019-08-241-1/+1