[pypy-svn] r4849 - pypy/branch/src-newobjectmodel/pypy/objspace

pedronis at codespeak.net pedronis at codespeak.net
Thu Jun 3 10:17:37 CEST 2004


Author: pedronis
Date: Thu Jun  3 10:17:36 2004
New Revision: 4849

Modified:
   pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py
Log:
fix ./, typo



Modified: pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py
==============================================================================
--- pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py	(original)
+++ pypy/branch/src-newobjectmodel/pypy/objspace/descroperation.py	Thu Jun  3 10:17:36 2004
@@ -140,7 +140,7 @@
 def _invoke_binop(self,w_impl,w_obj1,w_obj2):
     if w_impl is not None:
         w_res = space.get_and_call_function(w_impl,w_obj1,w_obj2)
-        if not space.is_true(space.is_(w_res.space.w_NotImplemented)):
+        if not space.is_true(space.is_(w_res,space.w_NotImplemented)):
             return w_res
     return None
 



More information about the Pypy-commit mailing list