Runnies23
Add application file
256f405
raw
history blame contribute delete
No virus
245 Bytes
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)