summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
Commit message (Expand)AuthorAgeFilesLines
* 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
* Unmark files as executable that can't actually be executed. (GH-15353)Greg Price2019-08-211-0/+0
* bpo-37444: Update differing exception between builtins and importlib (GH-14869)Ngalim Siregar2019-08-032-5/+5
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* bpo-37697: Sync with importlib_metadata 0.19 (#14993)Jason R. Coombs2019-07-283-4/+24
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-211-1/+1
* bpo-19696: Move threaded_import_hangers (GH-14655)Kyle Stanley2019-07-122-3/+48
* Move test_threaded_import.py to test_importlib/ (GH-14582)Kyle Stanley2019-07-051-0/+263
* bpo-19696: Replace deprecated method in "test_import_pkg.py" (GH-14466)Kyle Stanley2019-07-031-2/+2
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+0
* bpo-19696: Moved "test_pkgimport.py" to dir "test_importlib" (GH-14303)Kyle Stanley2019-06-281-0/+80
* bpo-30202 : Update test.test_importlib.test_abc to test find_spec() (GH-12847)Joannah Nanjekye2019-06-211-4/+17
* cross port importlib-metadata PR #76 (#13903)Anthony Sottile2019-06-073-0/+2
* Don't crash if there exists an EGG-INFO directory on sys.path (#13667)Anthony Sottile2019-05-301-0/+8
* bpo-34632: Add importlib.metadata (GH-12547)Jason R. Coombs2019-05-247-0/+564
* bpo-36766: Typos in docs and code comments (GH-13116)penguindustin2019-05-061-1/+1
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-291-1/+1
* bpo-36680: Rename duplicate test_source_from_cache_path_like_arg function (GH...Windson yang2019-04-221-1/+1
* bpo-35843: Implement __getitem__ for _NamespacePath (GH-11690)Anthony Sottile2019-03-081-0/+6
* bpo-35202: Remove unused imports in tests. (GH-10561)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-161-1/+0
* bpo-34022: Stop forcing of hash-based invalidation with SOURCE_DATE_EPOCH (GH...Elvis Pranskevichus2018-10-101-0/+15
* bpo-25711: Rewrite zipimport in pure Python. (GH-6809)Serhiy Storchaka2018-09-182-7/+7
* bpo-29514: Make magic number test work for candidatesNed Deily2018-06-271-1/+1
* bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (...Carl Meyer2018-06-162-11/+95
* bpo-33755: Fix importlib.resources isolation tests (#7412)Barry Warsaw2018-06-052-1/+9
* bpo-32374: Ignore Python-level exceptions in test_bad_traverse (GH-7145)Marcel Plch2018-05-281-7/+13