[pypy-svn] r66486 - pypy/branch/io-lang/pypy/module/_stackless

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Jul 21 19:39:06 CEST 2009


Author: cfbolz
Date: Tue Jul 21 19:39:05 2009
New Revision: 66486

Added:
   pypy/branch/io-lang/pypy/module/_stackless/rcoroutine.py   (contents, props changed)
Log:
forgot to add a file


Added: pypy/branch/io-lang/pypy/module/_stackless/rcoroutine.py
==============================================================================
--- (empty file)
+++ pypy/branch/io-lang/pypy/module/_stackless/rcoroutine.py	Tue Jul 21 19:39:05 2009
@@ -0,0 +1,9 @@
+from pypy.rlib.rcoroutine import make_coroutine_classes
+from pypy.interpreter.baseobjspace import Wrappable
+
+d = make_coroutine_classes(Wrappable)
+
+Coroutine = d['Coroutine']
+BaseCoState = d['BaseCoState']
+AbstractThunk = d['AbstractThunk']
+syncstate = d['syncstate']



More information about the Pypy-commit mailing list