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

stephan at codespeak.net stephan at codespeak.net
Wed Jun 14 17:49:37 CEST 2006


Author: stephan
Date: Wed Jun 14 17:49:36 2006
New Revision: 28780

Modified:
   pypy/dist/pypy/lib/stackless.py
Log:
forgot to import greelet from _stackless


Modified: pypy/dist/pypy/lib/stackless.py
==============================================================================
--- pypy/dist/pypy/lib/stackless.py	(original)
+++ pypy/dist/pypy/lib/stackless.py	Wed Jun 14 17:49:36 2006
@@ -25,7 +25,7 @@
             print task
         raise
 
-from _stackless import coroutine
+from _stackless import coroutine, greenlet
 
 __all__ = 'run getcurrent getmain schedule tasklet \
                 channel TaskletExit coroutine greenlet'.split()



More information about the Pypy-commit mailing list