[pypy-svn] r46679 - pypy/dist/pypy/lib

tismer at codespeak.net tismer at codespeak.net
Sun Sep 16 18:50:59 CEST 2007


Author: tismer
Date: Sun Sep 16 18:50:59 2007
New Revision: 46679

Modified:
   pypy/dist/pypy/lib/stackless.py
Log:
fixed a bad bug from debugging. stackless emulation is working again. Sorry for all the confusion

Modified: pypy/dist/pypy/lib/stackless.py
==============================================================================
--- pypy/dist/pypy/lib/stackless.py	(original)
+++ pypy/dist/pypy/lib/stackless.py	Sun Sep 16 18:50:59 2007
@@ -57,7 +57,7 @@
                arguments *argl, **argd
             """
             if self._frame is None or self._frame.dead:
-                self._frame = frame = MWrap(None)##GWrap()
+                self._frame = frame = GWrap()
                 frame.coro = self
             if hasattr(self._frame, 'run') and self._frame.run:
                 raise ValueError("cannot bind a bound coroutine")



More information about the Pypy-commit mailing list