This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: importlib has not util module
Type: crash Stage: resolved
Components: Library (Lib) Versions: Python 3.9
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: iritkatriel, marioidival
Priority: normal Keywords:

Created on 2020-10-06 13:08 by marioidival, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg378121 - (view) Author: Mario Idival (marioidival) Date: 2020-10-06 13:08
After new version 3.9, the util module from importlib does not exists anymore

>>> import importlib
>>> importlib.util.find_spec('enum')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'importlib' has no attribute 'util'
>>>
msg378123 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-10-06 13:15
import importlib.util
msg378230 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-10-08 10:41
This can be closed as not a bug (it's a user error).
History
Date User Action Args
2022-04-11 14:59:36adminsetgithub: 86124
2020-10-08 10:56:18serhiy.storchakasetstatus: open -> closed
resolution: not a bug
stage: resolved
2020-10-08 10:41:00iritkatrielsetmessages: + msg378230
2020-10-06 13:15:32iritkatrielsetnosy: + iritkatriel
messages: + msg378123
2020-10-06 13:10:37marioidivalsettype: crash
2020-10-06 13:08:55marioidivalcreate