[pypy-svn] r30854 - pypy/dist/pypy/objspace/cclp

auc at codespeak.net auc at codespeak.net
Tue Aug 1 17:54:34 CEST 2006


Author: auc
Date: Tue Aug  1 17:54:33 2006
New Revision: 30854

Modified:
   pypy/dist/pypy/objspace/cclp/variable.py
Log:
transl. fix

Modified: pypy/dist/pypy/objspace/cclp/variable.py
==============================================================================
--- pypy/dist/pypy/objspace/cclp/variable.py	(original)
+++ pypy/dist/pypy/objspace/cclp/variable.py	Tue Aug  1 17:54:33 2006
@@ -207,7 +207,7 @@
 
 def bind__Var_Future(space, w_var, w_fut):
     if space.is_true(space.is_bound(w_fut)):
-        return bind__Var_Root(w_var, w_fut.w_bound_to)
+        return bind__Var_Root(w_var, deref(space, w_fut))
     raise_future_binding(space)
     
 bind_mm = StdObjSpaceMultiMethod('bind', 2)



More information about the Pypy-commit mailing list