[pypy-svn] r64615 - pypy/branch/pyjitpl5/pypy/rlib

fijal at codespeak.net fijal at codespeak.net
Fri Apr 24 02:19:08 CEST 2009


Author: fijal
Date: Fri Apr 24 02:19:05 2009
New Revision: 64615

Modified:
   pypy/branch/pyjitpl5/pypy/rlib/rcoroutine.py
Log:
update greenlet import


Modified: pypy/branch/pyjitpl5/pypy/rlib/rcoroutine.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/rlib/rcoroutine.py	(original)
+++ pypy/branch/pyjitpl5/pypy/rlib/rcoroutine.py	Fri Apr 24 02:19:05 2009
@@ -34,7 +34,7 @@
 from pypy.rlib.objectmodel import we_are_translated
 
 try:
-    from py.magic import greenlet
+    from greenlet import greenlet
     main_greenlet = greenlet.getcurrent()
 except (ImportError, ValueError):
     def greenlet(*args, **kwargs):



More information about the Pypy-commit mailing list