[pypy-svn] r30288 - pypy/dist/pypy/module/_stackless

auc at codespeak.net auc at codespeak.net
Thu Jul 20 19:26:47 CEST 2006


Author: auc
Date: Thu Jul 20 19:26:46 2006
New Revision: 30288

Modified:
   pypy/dist/pypy/module/_stackless/interp_clonable.py
Log:
missing bits

Modified: pypy/dist/pypy/module/_stackless/interp_clonable.py
==============================================================================
--- pypy/dist/pypy/module/_stackless/interp_clonable.py	(original)
+++ pypy/dist/pypy/module/_stackless/interp_clonable.py	Thu Jul 20 19:26:46 2006
@@ -49,7 +49,7 @@
         self.framestack = None
         if not is_main:
              space.getexecutioncontext().subcontext_new(self)
-        self._exc = None # not space.w_None ?
+        self._dead = False
 
     def hello(self):
         if we_are_translated():
@@ -71,10 +71,10 @@
 
     def w_finished(self, w_excinfo):
         """called by AppCoroutine.finish"""
-        self._exc = w_excinfo
-
+        pass
+        
     def is_dead(self):
-        return self._exc is not None
+        return self._dead
 
     def w_switch(self):
         space = self.space



More information about the Pypy-commit mailing list