[f539ea]: / qml / lib / python3.10 / site-packages / setuptools / py34compat.py

Download this file

14 lines (10 with data), 245 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import importlib
try:
import importlib.util
except ImportError:
pass
try:
module_from_spec = importlib.util.module_from_spec
except AttributeError:
def module_from_spec(spec):
return spec.loader.load_module(spec.name)