[pypy-svn] r59501 - pypy/trunk/pypy/interpreter/test

fijal at codespeak.net fijal at codespeak.net
Tue Oct 28 18:55:09 CET 2008


Author: fijal
Date: Tue Oct 28 18:55:09 2008
New Revision: 59501

Modified:
   pypy/trunk/pypy/interpreter/test/test_compiler.py
   pypy/trunk/pypy/interpreter/test/test_zzz.py
Log:
* fix imports
* skip this on cpy2.4


Modified: pypy/trunk/pypy/interpreter/test/test_compiler.py
==============================================================================
--- pypy/trunk/pypy/interpreter/test/test_compiler.py	(original)
+++ pypy/trunk/pypy/interpreter/test/test_compiler.py	Tue Oct 28 18:55:09 2008
@@ -629,11 +629,11 @@
         def skip_on_2_4(self):
             py.test.skip("syntax not supported by the CPython 2.4 compiler")
         test_continue_in_nested_finally = skip_on_2_4
+        test_try_except_finally = skip_on_2_4
     elif sys.version_info > (2, 4):
         def skip_on_2_5(self):
             py.test.skip("syntax changed in CPython 2.5 compiler")
         test_yield_in_finally = skip_on_2_5
-            
 
 class TestPythonAstCompiler_25_grammar(BaseTestCompiler):
     def setup_method(self, method):

Modified: pypy/trunk/pypy/interpreter/test/test_zzz.py
==============================================================================
--- pypy/trunk/pypy/interpreter/test/test_zzz.py	(original)
+++ pypy/trunk/pypy/interpreter/test/test_zzz.py	Tue Oct 28 18:55:09 2008
@@ -1,5 +1,7 @@
 import py
 from pypy import conftest
+from pypy.conftest import gettestobjspace
+from pypy.interpreter import gateway
 
 class AppTestSlow:    
     def setup_class(cls):



More information about the Pypy-commit mailing list