diff options
author | Brett Cannon <brett@python.org> | 2013-08-23 15:52:19 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-08-23 15:52:19 (GMT) |
commit | 16ababc2133b7c9cfadfcf669769faf68255ed52 (patch) | |
tree | ece10b057072a8411011b6199a8b3bcaa759f418 /Lib/test/test_imp.py | |
parent | f9f045896124148dc518b7d35f8faf1e2862c571 (diff) | |
parent | a4975a911d17d8baa96570794fa6db19c0676a2a (diff) | |
download | cpython-16ababc2133b7c9cfadfcf669769faf68255ed52.zip cpython-16ababc2133b7c9cfadfcf669769faf68255ed52.tar.gz cpython-16ababc2133b7c9cfadfcf669769faf68255ed52.tar.bz2 |
merge for issue #18755
Diffstat (limited to 'Lib/test/test_imp.py')
-rw-r--r-- | Lib/test/test_imp.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py index 8eb56f6..586a97c 100644 --- a/Lib/test/test_imp.py +++ b/Lib/test/test_imp.py @@ -275,6 +275,7 @@ class ImportTests(unittest.TestCase): return imp.load_module(name, None, *found[1:]) +<<<<<<< local @unittest.skipIf(sys.dont_write_bytecode, "test meaningful only when writing bytecode") def test_bug7732(self): @@ -283,6 +284,14 @@ class ImportTests(unittest.TestCase): os.mkdir(source) self.assertRaisesRegex(ImportError, '^No module', imp.find_module, support.TESTFN, ["."]) +======= + def test_multiple_calls_to_get_data(self): + # Issue #18755: make sure multiple calls to get_data() can succeed. + loader = imp._LoadSourceCompatibility('imp', imp.__file__, + open(imp.__file__)) + loader.get_data(imp.__file__) # File should be closed + loader.get_data(imp.__file__) # Will need to create a newly opened file +>>>>>>> other class ReloadTests(unittest.TestCase): |