[Python-checkins] r84102 - python/branches/release27-maint/Lib/test/test_import.py

florent.xicluna python-checkins at python.org
Mon Aug 16 21:33:48 CEST 2010


Author: florent.xicluna
Date: Mon Aug 16 21:33:48 2010
New Revision: 84102

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

Modified:
   python/branches/release27-maint/Lib/test/test_import.py

Modified: python/branches/release27-maint/Lib/test/test_import.py
==============================================================================
--- python/branches/release27-maint/Lib/test/test_import.py	(original)
+++ python/branches/release27-maint/Lib/test/test_import.py	Mon Aug 16 21:33:48 2010
@@ -134,14 +134,6 @@
             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'


More information about the Python-checkins mailing list