mirror of
https://github.com/python/cpython.git
synced 2025-11-20 02:50:14 +00:00
bpo-35486: Note Py3.6 import system API requirement change (GH-11540)
While the introduction of ModuleNotFoundError was fully backwards compatible on the import API consumer side, folks providing alternative implementations of `__import__` need to make an update to be forward compatible with clients that start relying on the new subclass. https://bugs.python.org/issue35486
This commit is contained in:
parent
8c349565e8
commit
cee29b46a1
2 changed files with 13 additions and 1 deletions
|
|
@ -1737,7 +1737,8 @@ Python 3.6 and newer for other parts of the code).
|
|||
if spec is not None:
|
||||
break
|
||||
else:
|
||||
raise ImportError(f'No module named {absolute_name!r}')
|
||||
msg = f'No module named {absolute_name!r}'
|
||||
raise ModuleNotFoundError(msg, name=absolute_name)
|
||||
module = importlib.util.module_from_spec(spec)
|
||||
spec.loader.exec_module(module)
|
||||
sys.modules[absolute_name] = module
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue