[Python-checkins] r81219 - python/branches/py3k/Lib/test/test_import.py

brett.cannon python-checkins at python.org
Sun May 16 00:53:24 CEST 2010


Author: brett.cannon
Date: Sun May 16 00:53:24 2010
New Revision: 81219

Log:
Make test_module_with_large_stack as an expected failure because of a change in
importlib that is causing it to fail. Work to fix it is being tracked in issue
8727.


Modified:
   python/branches/py3k/Lib/test/test_import.py

Modified: python/branches/py3k/Lib/test/test_import.py
==============================================================================
--- python/branches/py3k/Lib/test/test_import.py	(original)
+++ python/branches/py3k/Lib/test/test_import.py	Sun May 16 00:53:24 2010
@@ -142,6 +142,7 @@
             self.assertIs(orig_path, new_os.path)
             self.assertIsNot(orig_getenv, new_os.getenv)
 
+    @unittest.expectedFailure  # Issue 8727 is tracking the fix.
     def test_module_with_large_stack(self, module='longlist'):
         # Regression test for http://bugs.python.org/issue561858.
         filename = module + '.py'


More information about the Python-checkins mailing list