diff options
| -rw-r--r-- | scripts/lib/scriptutils.py | 11 | ||||
| -rwxr-xr-x | scripts/pythondeps | 8 |
2 files changed, 8 insertions, 11 deletions
diff --git a/scripts/lib/scriptutils.py b/scripts/lib/scriptutils.py index 31e48ea4dc..3c60c3a1e6 100644 --- a/scripts/lib/scriptutils.py +++ b/scripts/lib/scriptutils.py | |||
| @@ -26,6 +26,8 @@ import string | |||
| 26 | import subprocess | 26 | import subprocess |
| 27 | import sys | 27 | import sys |
| 28 | import tempfile | 28 | import tempfile |
| 29 | import importlib | ||
| 30 | from importlib import machinery | ||
| 29 | 31 | ||
| 30 | def logger_create(name, stream=None): | 32 | def logger_create(name, stream=None): |
| 31 | logger = logging.getLogger(name) | 33 | logger = logging.getLogger(name) |
| @@ -50,12 +52,9 @@ def load_plugins(logger, plugins, pluginpath): | |||
| 50 | 52 | ||
| 51 | def load_plugin(name): | 53 | def load_plugin(name): |
| 52 | logger.debug('Loading plugin %s' % name) | 54 | logger.debug('Loading plugin %s' % name) |
| 53 | fp, pathname, description = imp.find_module(name, [pluginpath]) | 55 | spec = importlib.machinery.PathFinder.find_spec(name, path=[pluginpath] ) |
| 54 | try: | 56 | if spec: |
| 55 | return imp.load_module(name, fp, pathname, description) | 57 | return spec.loader.load_module() |
| 56 | finally: | ||
| 57 | if fp: | ||
| 58 | fp.close() | ||
| 59 | 58 | ||
| 60 | def plugin_name(filename): | 59 | def plugin_name(filename): |
| 61 | return os.path.splitext(os.path.basename(filename))[0] | 60 | return os.path.splitext(os.path.basename(filename))[0] |
diff --git a/scripts/pythondeps b/scripts/pythondeps index 590b9769e7..3e13a587ee 100755 --- a/scripts/pythondeps +++ b/scripts/pythondeps | |||
| @@ -9,7 +9,8 @@ | |||
| 9 | 9 | ||
| 10 | import argparse | 10 | import argparse |
| 11 | import ast | 11 | import ast |
| 12 | import imp | 12 | import importlib |
| 13 | from importlib import machinery | ||
| 13 | import logging | 14 | import logging |
| 14 | import os.path | 15 | import os.path |
| 15 | import sys | 16 | import sys |
| @@ -17,10 +18,7 @@ import sys | |||
| 17 | 18 | ||
| 18 | logger = logging.getLogger('pythondeps') | 19 | logger = logging.getLogger('pythondeps') |
| 19 | 20 | ||
| 20 | suffixes = [] | 21 | suffixes = importlib.machinery.all_suffixes() |
| 21 | for triple in imp.get_suffixes(): | ||
| 22 | suffixes.append(triple[0]) | ||
| 23 | |||
| 24 | 22 | ||
| 25 | class PythonDepError(Exception): | 23 | class PythonDepError(Exception): |
| 26 | pass | 24 | pass |
