[pypy-svn] r17896 - pypy/dist/pypy/translator/test

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Sep 27 11:36:20 CEST 2005


Author: cfbolz
Date: Tue Sep 27 11:36:20 2005
New Revision: 17896

Modified:
   pypy/dist/pypy/translator/test/test_simplify.py
Log:
no idea what happened here


Modified: pypy/dist/pypy/translator/test/test_simplify.py
==============================================================================
--- pypy/dist/pypy/translator/test/test_simplify.py	(original)
+++ pypy/dist/pypy/translator/test/test_simplify.py	Tue Sep 27 11:36:20 2005
@@ -25,7 +25,7 @@
 
 def test_remove_recursive_call():
     def rec(a):
-        if a <= 1:block.exitswitch != Constant(last_exception):
+        if a <= 1:
             return 0
         else:
             return rec(a - 1) + 1



More information about the Pypy-commit mailing list