-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
questionFurther information is requestedFurther information is requested
Description
codeql/python/extractor/imp.py
Line 20 in ab9f78f
from importlib._bootstrap import _ERR_MSG, _exec, _load, _builtin_from_name |
$ python3.13 --version ; python3.13 -c "from importlib._bootstrap import _ERR_MSG"
Python 3.13.5
$ python3.14 --version ; python3.14 -c "from importlib._bootstrap import _ERR_MSG"
Python 3.14.0
Traceback (most recent call last):
File "<string>", line 1, in <module>
from importlib._bootstrap import _ERR_MSG
ImportError: cannot import name '_ERR_MSG' from 'importlib._bootstrap' (/usr/lib/python3.14/importlib/_bootstrap.py)
Python 3.14 no longer has _ERR_MSG
that can be imported from importlib._bootstrap
.
This occurs on the current main branch, as well as recent versions 2.23.2 and 2.23.1.
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested