Issue #7732: Move an imp.find_module test from test_import to

test_imp.
This commit is contained in:
Brett Cannon 2013-06-07 13:26:53 -04:00
parent abb18af38f
commit 997487d5d7
2 changed files with 11 additions and 10 deletions

View file

@ -127,16 +127,6 @@ class ImportTests(unittest.TestCase):
finally:
del sys.path[0]
@skip_if_dont_write_bytecode
def test_bug7732(self):
source = TESTFN + '.py'
os.mkdir(source)
try:
self.assertRaisesRegex(ImportError, '^No module',
imp.find_module, TESTFN, ["."])
finally:
os.rmdir(source)
def test_module_with_large_stack(self, module='longlist'):
# Regression test for http://bugs.python.org/issue561858.
filename = module + '.py'