diff options
author | Brett Cannon <brett@python.org> | 2013-08-23 15:45:57 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-08-23 15:45:57 (GMT) |
commit | a4975a911d17d8baa96570794fa6db19c0676a2a (patch) | |
tree | 8b9dfc5d79c0b14d87fb274e4e8aef79ccc1c48a /Lib/test/test_imp.py | |
parent | f5ebd264032fbcb07a41a49031c2281f81c9a814 (diff) | |
download | cpython-a4975a911d17d8baa96570794fa6db19c0676a2a.zip cpython-a4975a911d17d8baa96570794fa6db19c0676a2a.tar.gz cpython-a4975a911d17d8baa96570794fa6db19c0676a2a.tar.bz2 |
Issue #18755: Allow imp.load_*() loaders to have get_data() called
multiple times.
Diffstat (limited to 'Lib/test/test_imp.py')
-rw-r--r-- | Lib/test/test_imp.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py index bf29e42..b56efe3 100644 --- a/Lib/test/test_imp.py +++ b/Lib/test/test_imp.py @@ -248,6 +248,13 @@ class ImportTests(unittest.TestCase): return imp.load_module(name, None, *found[1:]) + 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 + class ReloadTests(unittest.TestCase): |