mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
merge for issue #18755
This commit is contained in:
commit
16ababc213
2 changed files with 16 additions and 2 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue