From: Florent Xicluna Date: Mon, 16 Aug 2010 19:33:48 +0000 (+0000) Subject: This test was not expected in r84100 (not yet ready). X-Git-Tag: v2.7.1rc1~396 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b35af8c91c96b4dd2df3deccb7cff950601b5fd8;p=thirdparty%2FPython%2Fcpython.git This test was not expected in r84100 (not yet ready). --- diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 8912eba8a377..cd8b4a4f3b1c 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -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'