summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-08-16 19:33:48 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-08-16 19:33:48 (GMT)
commitb35af8c91c96b4dd2df3deccb7cff950601b5fd8 (patch)
tree33d92a97864c1e260ef0d26cbc937234d34199d6 /Lib/test
parentb62a20547a9d78a794e60ab709be43f51aee4aa4 (diff)
downloadcpython-b35af8c91c96b4dd2df3deccb7cff950601b5fd8.zip
cpython-b35af8c91c96b4dd2df3deccb7cff950601b5fd8.tar.gz
cpython-b35af8c91c96b4dd2df3deccb7cff950601b5fd8.tar.bz2
This test was not expected in r84100 (not yet ready).
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_import.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
index 8912eba..cd8b4a4 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'