[pypy-svn] r33490 - pypy/dist/pypy/objspace

auc at codespeak.net auc at codespeak.net
Fri Oct 20 09:32:12 CEST 2006


Author: auc
Date: Fri Oct 20 09:32:10 2006
New Revision: 33490

Modified:
   pypy/dist/pypy/objspace/logic.py
Log:
oops, missing commit


Modified: pypy/dist/pypy/objspace/logic.py
==============================================================================
--- pypy/dist/pypy/objspace/logic.py	(original)
+++ pypy/dist/pypy/objspace/logic.py	Fri Oct 20 09:32:10 2006
@@ -34,7 +34,7 @@
 
 from pypy.objspace.cclp.constraint.variable import app_domain
 
-from pypy.objspace.cclp.types import app_domain_of, app_name_of, ClonableCoroutine
+from pypy.objspace.cclp.types import app_domain_of, app_name_of, AppCoroutine
 
 all_mms.update(variable_mms)
 
@@ -300,7 +300,7 @@
     # do the magic
     patch_space_in_place(space, 'logic', proxymaker)
     # instantiate singleton scheduler
-    sched.main_thread = ClonableCoroutine.w_getcurrent(space)
+    sched.main_thread = AppCoroutine.w_getcurrent(space)
     tg = W_ThreadGroupScheduler(space)
     tg._init_head(sched.main_thread)
     sched.uler = TopLevelScheduler(space, tg)



More information about the Pypy-commit mailing list