Commit 82689e1a authored by Jason R. Coombs's avatar Jason R. Coombs

Ensure importlib.util is imported on Python 3.5

parent e1f340b5
import importlib
try:
import importlib.util
except ImportError:
pass
try:
module_from_spec = importlib.util.module_from_spec
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment