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

ac at codespeak.net ac at codespeak.net
Thu Feb 22 17:58:51 CET 2007


Author: ac
Date: Thu Feb 22 17:58:49 2007
New Revision: 39314

Modified:
   pypy/dist/pypy/module/_stackless/interp_greenlet.py
Log:
Remove some debug prints.

Modified: pypy/dist/pypy/module/_stackless/interp_greenlet.py
==============================================================================
--- pypy/dist/pypy/module/_stackless/interp_greenlet.py	(original)
+++ pypy/dist/pypy/module/_stackless/interp_greenlet.py	Thu Feb 22 17:58:49 2007
@@ -73,16 +73,12 @@
     _get_state = staticmethod(_get_state)
 
     def hello(self):
-        print "hello  ", id(self), self.subctx.framestack.items
-        print syncstate.things_to_do, syncstate.temp_exc
         ec = self.space.getexecutioncontext()
         self.subctx.enter(ec)
 
     def goodbye(self):
         ec = self.space.getexecutioncontext()
         self.subctx.leave(ec)
-        print "goodbye", id(self), self.subctx.framestack.items
-        print syncstate.things_to_do, syncstate.temp_exc
 
     def w_getcurrent(space):
         return space.wrap(AppGreenlet._get_state(space).current)



More information about the Pypy-commit mailing list