[pypy-svn] r17627 - pypy/dist/pypy/tool/pytest

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Sep 17 22:12:45 CEST 2005


Author: cfbolz
Date: Sat Sep 17 22:12:45 2005
New Revision: 17627

Modified:
   pypy/dist/pypy/tool/pytest/appsupport.py
Log:
reverting this -- leeds to infinite recursion because the thing in appsupport
behaves like the space itself.


Modified: pypy/dist/pypy/tool/pytest/appsupport.py
==============================================================================
--- pypy/dist/pypy/tool/pytest/appsupport.py	(original)
+++ pypy/dist/pypy/tool/pytest/appsupport.py	Sat Sep 17 22:12:45 2005
@@ -196,4 +196,4 @@
 
 def eq_w(space, w_obj1, w_obj2): 
     """ return interp-level boolean of eq(w_obj1, w_obj2). """ 
-    return space.eq_w(w_obj1, w_obj2)
+    return space.is_true(space.eq(w_obj1, w_obj2))



More information about the Pypy-commit mailing list