[pypy-svn] r28712 - pypy/dist/pypy/interpreter/test

ac at codespeak.net ac at codespeak.net
Mon Jun 12 17:12:13 CEST 2006


Author: ac
Date: Mon Jun 12 17:12:12 2006
New Revision: 28712

Modified:
   pypy/dist/pypy/interpreter/test/test_syntax.py
Log:
Removed test since it tested a bug in py.lib that now has it's own test for the bug.

Modified: pypy/dist/pypy/interpreter/test/test_syntax.py
==============================================================================
--- pypy/dist/pypy/interpreter/test/test_syntax.py	(original)
+++ pypy/dist/pypy/interpreter/test/test_syntax.py	Mon Jun 12 17:12:12 2006
@@ -553,25 +553,6 @@
         """
         exec s
 
-class AppTestOddball:
-
-    def test_indentation_oddness(self):
-            skip("in-progress !?")
-            compile('''
-import sys, stackless
-
-def f():
-    global the_frame
-    the_frame = sys._getframe()
-    main_coro.switch()
-
-co = stackless.coroutine()
-main_coro = stackless.coroutine.getcurrent()
-co.bind(f)
-co.switch()
-''', "<exec>", "exec")
-        
-
 if __name__ == '__main__':
     # only to check on top of CPython (you need 2.4)
     from py.test import raises



More information about the Pypy-commit mailing list