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

auc at codespeak.net auc at codespeak.net
Fri Oct 13 17:01:16 CEST 2006


Author: auc
Date: Fri Oct 13 17:01:14 2006
New Revision: 33262

Modified:
   pypy/dist/pypy/objspace/cclp/thunk.py
Log:
Ooops


Modified: pypy/dist/pypy/objspace/cclp/thunk.py
==============================================================================
--- pypy/dist/pypy/objspace/cclp/thunk.py	(original)
+++ pypy/dist/pypy/objspace/cclp/thunk.py	Fri Oct 13 17:01:14 2006
@@ -95,8 +95,8 @@
             except Exception, exc:
                 # maybe app_level let something buble up ...
                 w("-- exceptional EXIT of DISTRIBUTOR", str(id(self._coro)), "with", str(exc))
-                sched.uler.dirty_traced_vars(self._coro, failed_value)
                 failed_value = W_FailedValue(exc)
+                sched.uler.dirty_traced_vars(self._coro, failed_value)
                 interp_bind(cspace._solution, failed_value)
                 cspace.fail()
             else:



More information about the Pypy-commit mailing list