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

auc at codespeak.net auc at codespeak.net
Wed Jul 12 15:31:06 CEST 2006


Author: auc
Date: Wed Jul 12 15:31:05 2006
New Revision: 29982

Modified:
   pypy/dist/pypy/module/_stackless/interp_clonable.py
Log:
fix goof


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	Wed Jul 12 15:31:05 2006
@@ -8,16 +8,14 @@
     local_pool = None
 
     def hello(self):
-        print "enter hello"
         if we_are_translated():
             self.saved_pool = gc_swap_pool(self.local_pool)
-        super(ClonableCoroutine).hello(self)
+        AppCoroutine.hello(self)
 
     def goodbye(self):
-        print "enter goodbye"
         if we_are_translated():
             self.local_pool = gc_swap_pool(self.saved_pool)
-        super(ClonableCoroutine).goodbye(self)
+        AppCoroutine.goodbye(self)
 
     def clone(self):
         if not we_are_translated():



More information about the Pypy-commit mailing list