Use importlib to take place of imp module

The imp module is deprecated[1] since version 3.4, use importlib to
instead

[1]: https://docs.python.org/3/library/imp.html

Change-Id: Iba4d686f9452728dd6c90a5c2e37e59dc78c6e2b
This commit is contained in:
zhoulinhui 2020-08-30 22:08:45 +08:00
parent 2b293a1bfa
commit 5abc11c439
1 changed files with 11 additions and 2 deletions

View File

@ -13,7 +13,7 @@
# under the License.
import compiler
import imp
import importlib.util
import os.path
import sys
@ -112,11 +112,20 @@ def check_i18n(input_file, i18n_msg_predicates, msg_format_checkers, debug):
return v.error
def load_module(name, path):
module_spec = importlib.util.spec_from_file_location(
name, path
)
module = importlib.util.module_from_spec(module_spec)
module_spec.loader.exec_module(module)
return module
if __name__ == '__main__':
input_path = sys.argv[1]
cfg_path = sys.argv[2]
try:
cfg_mod = imp.load_source('', cfg_path)
cfg_mod = load_module('', cfg_path)
except Exception:
print("Load cfg module failed", file=sys.stderr)
sys.exit(1)