summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib
Commit message (Expand)AuthorAgeFilesLines
* gh-143650: Fix importlib race condition on import failure (GH-143651)Gregory P. Smith4 days1-0/+65
* gh-144278: Enable overriding sys.implementation's name and cache_tag when bui...Steve Dower5 days8-17/+79
* gh-143658: importlib.metadata: Use `str.translate` to improve performance of ...Hugo van Kemenade2026-01-131-0/+34
* GH-139686: Revert "gh-139686: Make reloading a lazy module no-op (GH-139857)"...Brett Cannon2026-01-081-24/+1
* gh-141081: Revert "Add a `.gitignore` file to `__pycache__` folders (#141162)...Hugo van Kemenade2025-12-151-15/+0
* gh-141081: Add a `.gitignore` file to `__pycache__` folders (#141162)Stan Ulbrych2025-12-151-0/+15
* gh-139686: Make reloading a lazy module no-op (GH-139857)Amer Esmail Elsheikh2025-12-121-1/+24
* GH-65961: Stop setting `__cached__` on modules (GH-142165)Brett Cannon2025-12-115-21/+6
* GH-142203: Remove the `debug_override` parameter from `packaging.util.cache_f...Brett Cannon2025-12-111-35/+0
* GH-97850: Remove all uses and definitions of `load_module()` from importlib (...Brett Cannon2025-12-109-609/+5
* gh-141930: Use the regular IO stack to write .pyc files for a better error me...Stefano Rivera2025-11-271-16/+55
* gh-141780: Make PyModule_FromSlotsAndSpec enable GIL if needed (GH-141785)Petr Viktorin2025-11-241-1/+2
* GH-90344: replace single-call `io.IncrementalNewlineDecoder` usage with non-i...Guo Ci2025-11-151-1/+1
* gh-138044: Remove deprecated parameter alias for `importlib.resources.files` ...Semyon Moroz2025-10-041-8/+0
* gh-138313: Suppress ResourceWarnings and restore skipped test (#138597)Jason R. Coombs2025-09-223-17/+2
* gh-93334: Fix homonym edge case in PathFinder.find_spec() (GH-98100)Jacob Walls2025-09-052-0/+13
* Reapply "gh-132947: Apply changes from importlib_metadata 8.7 (#137885)" (#13...Jason R. Coombs2025-09-016-41/+68
* Revert "gh-132947: Apply changes from importlib_metadata 8.7 (#137885)" (#137...Jason R. Coombs2025-08-185-51/+41
* gh-132947: Apply changes from importlib_metadata 8.7 (#137885)Jason R. Coombs2025-08-185-41/+51
* bpo-38735: Don't fail when importing from / with sys.pycache_prefix set (GH-3...Petr Viktorin2025-08-181-0/+12
* gh-120492: Sync importlib_metadata 8.2.0 (#124033)Jason R. Coombs2025-08-152-26/+29
* GH-137426: Remove code deprecation of `importlib.abc.ResourceLoader` (GH-137567)Brett Cannon2025-08-111-28/+3
* Update bytecode magic number in tests for the 3.14 release candidate (#136427)Hugo van Kemenade2025-07-081-1/+1
* gh-134322: Fix `repr(threading.RLock)` (#134389)Duprat2025-05-221-0/+1
* gh-134100: Fix use-after-free in `PyImport_ImportModuleLevelObject` (#134117)Nico-Posada2025-05-181-0/+15
* gh-133454: Mark tests with many threads that use much memory as bigmem (GH-13...Serhiy Storchaka2025-05-081-5/+10
* gh-130704: Strength reduce `LOAD_FAST{_LOAD_FAST}` (#130708)mpage2025-04-011-0/+3
* gh-131647: fix 'sys.path_hooks is empty' warning in test_importlib (#131648)Thomas Grainger2025-03-251-1/+5
* gh-131152: Remove unused imports from tests (part 2) (#131154)Victor Stinner2025-03-133-4/+0
* gh-115911: Ignore PermissionError during import from cwd (#116131)Alex Willmer2025-01-261-0/+23
* gh-123987: Fix NotADirectoryError in NamespaceReader when sentinel present (#...Jason R. Coombs2025-01-262-7/+65
* gh-71339: Use new assertion methods in test_import and test_importlib (GH-129...Serhiy Storchaka2025-01-2117-47/+44
* gh-121604: fix warnings in test_importlib.test_abc and test_importlib.test_wi...Thomas Grainger2025-01-162-8/+49
* gh-121604: Make sure all deprecated items in importlib raise DeprecationWarni...Tomas R.2025-01-153-0/+51
* gh-71339: Add additional assertion methods for unittest (GH-128707)Serhiy Storchaka2025-01-141-6/+0
* GH-126606: don't write incomplete pyc files (GH-126627)CF Bolz-Tereick2024-11-131-0/+32
* gh-125519: Improve traceback if `importlib.reload()` is called with a non-mod...Alex Waygood2024-10-211-0/+15
* gh-123085: _compile_importlib: Avoid copying sources before compilation (GH-1...Petr Viktorin2024-09-181-8/+7
* gh-123085: Fix issue in inferred caller when resources package has no source ...Jason R. Coombs2024-09-121-2/+37
* gh-123994: Generate utf-16 file using little endian and BOM. (#123995)Jason R. Coombs2024-09-121-2/+2
* gh-121735: Fix module-adjacent references in zip files (#123037)Jason R. Coombs2024-09-1235-232/+214
* gh-116608: Apply style and compatibility changes from importlib_metadata. (#1...Jason R. Coombs2024-08-151-31/+49
* gh-59110: zipimport: support namespace packages when no directory entry exist...Serhiy Storchaka2024-07-041-14/+13
* gh-120910: Fix issue resolving relative paths outside site-packages. (#120911)Jason R. Coombs2024-06-232-0/+35
* gh-120801: Refactor importlib.metadata fixtures. (#120803)Jason R. Coombs2024-06-203-28/+9
* gh-120417: Fix "imported but unused" linter warnings (#120461)Victor Stinner2024-06-141-0/+40
* gh-106531: Apply changes from importlib_resources 6.3.2 (#117054)Jason R. Coombs2024-06-0412-144/+170
* gh-118727: Don't drop the GIL in `drop_gil()` unless the current thread holds...Brett Simmers2024-05-231-4/+1
* gh-118729: Temporarily skip `test_multiprocessing_pool_circular_import` (#118...Sam Gross2024-05-071-1/+4
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-032-24/+55