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

auc at codespeak.net auc at codespeak.net
Thu Oct 5 09:57:57 CEST 2006


Author: auc
Date: Thu Oct  5 09:57:50 2006
New Revision: 32897

Modified:
   pypy/dist/pypy/module/_stackless/clonable.py
Log:
EO useless flag


Modified: pypy/dist/pypy/module/_stackless/clonable.py
==============================================================================
--- pypy/dist/pypy/module/_stackless/clonable.py	(original)
+++ pypy/dist/pypy/module/_stackless/clonable.py	Thu Oct  5 09:57:50 2006
@@ -29,7 +29,6 @@
         self.framestack = None
         if not is_main:
              space.getexecutioncontext().subcontext_new(self)
-        self._dead = False
         self._next = self._prev = self
         self._cspace = None
 
@@ -56,9 +55,6 @@
         """called by AppCoroutine.finish"""
         pass
         
-    def is_dead(self):
-        return self._dead
-
     def w_switch(self):
         space = self.space
         if self.frame is None:



More information about the Pypy-commit mailing list