This test was not expected in r84100 (not yet ready).

This commit is contained in:
Florent Xicluna 2010-08-16 19:33:48 +00:00
parent b62a20547a
commit b35af8c91c
1 changed files with 0 additions and 8 deletions

View File

@ -134,14 +134,6 @@ class ImportTests(unittest.TestCase):
self.assertIs(orig_path, new_os.path)
self.assertIsNot(orig_getenv, new_os.getenv)
def test_bug7732(self):
source = TESTFN + '.py'
os.mkdir(source)
try:
self.assertRaises(IOError, imp.find_module, TESTFN, ["."])
finally:
rmtree(source)
def test_module_with_large_stack(self, module='longlist'):
# Regression test for http://bugs.python.org/issue561858.
filename = module + os.extsep + 'py'