summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importhooks.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_importhooks.py')
-rw-r--r--Lib/test/test_importhooks.py18
1 files changed, 16 insertions, 2 deletions
diff --git a/Lib/test/test_importhooks.py b/Lib/test/test_importhooks.py
index 4191a17..5ece533 100644
--- a/Lib/test/test_importhooks.py
+++ b/Lib/test/test_importhooks.py
@@ -12,7 +12,13 @@ def get_file():
return __file__
"""
+reload_src = test_src+"""\
+reloaded = True
+"""
+
test_co = compile(test_src, "<???>", "exec")
+reload_co = compile(reload_src, "<???>", "exec")
+
test_path = "!!!_test_!!!"
@@ -32,6 +38,7 @@ class TestImporter:
"hooktestpackage": (True, test_co),
"hooktestpackage.sub": (True, test_co),
"hooktestpackage.sub.subber": (False, test_co),
+ "reloadmodule": (False, test_co),
}
def __init__(self, path=test_path):
@@ -52,8 +59,7 @@ class TestImporter:
def load_module(self, fullname):
ispkg, code = self.modules[fullname]
- mod = imp.new_module(fullname)
- sys.modules[fullname] = mod
+ mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
mod.__file__ = "<%s>" % self.__class__.__name__
mod.__loader__ = self
if ispkg:
@@ -163,6 +169,14 @@ class ImportHooksTestCase(ImportHooksBaseTestCase):
self.assertEqual(hooktestpackage.sub.__loader__, importer)
self.assertEqual(hooktestpackage.sub.subber.__loader__, importer)
+ TestImporter.modules['reloadmodule'] = (False, test_co)
+ import reloadmodule
+ self.failIf(hasattr(reloadmodule,'reloaded'))
+
+ TestImporter.modules['reloadmodule'] = (False, reload_co)
+ reload(reloadmodule)
+ self.failUnless(hasattr(reloadmodule,'reloaded'))
+
def testMetaPath(self):
i = MetaImporter()
sys.meta_path.append(i)