forked from M-Labs/artiq
Revert "tools/file_import: restore sys.modules. Closes #976"
This reverts commit b48e782dd6
.
This commit is contained in:
parent
5f0cfadb30
commit
8d66d53e06
|
@ -6,7 +6,6 @@ import collections
|
||||||
import atexit
|
import atexit
|
||||||
import string
|
import string
|
||||||
import os
|
import os
|
||||||
from copy import copy
|
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
|
@ -84,13 +83,9 @@ def file_import(filename, prefix="file_import_"):
|
||||||
|
|
||||||
path = os.path.dirname(os.path.realpath(filename))
|
path = os.path.dirname(os.path.realpath(filename))
|
||||||
sys.path.insert(0, path)
|
sys.path.insert(0, path)
|
||||||
try:
|
|
||||||
previous_modules = copy(sys.modules)
|
|
||||||
try:
|
try:
|
||||||
loader = importlib.machinery.SourceFileLoader(modname, filename)
|
loader = importlib.machinery.SourceFileLoader(modname, filename)
|
||||||
module = loader.load_module()
|
module = loader.load_module()
|
||||||
finally:
|
|
||||||
sys.modules = previous_modules
|
|
||||||
finally:
|
finally:
|
||||||
sys.path.remove(path)
|
sys.path.remove(path)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue