[pypy-svn] r18743 - pypy/dist/pypy/module/stackless

arigo at codespeak.net arigo at codespeak.net
Tue Oct 18 18:18:29 CEST 2005


Author: arigo
Date: Tue Oct 18 18:18:29 2005
New Revision: 18743

Modified:
   pypy/dist/pypy/module/stackless/cstack.py
Log:
detail


Modified: pypy/dist/pypy/module/stackless/cstack.py
==============================================================================
--- pypy/dist/pypy/module/stackless/cstack.py	(original)
+++ pypy/dist/pypy/module/stackless/cstack.py	Tue Oct 18 18:18:29 2005
@@ -10,7 +10,7 @@
 frames_depth.unwrap_spec = [ObjSpace]
 
 def too_big(space):
-    return space.wrap(objectmodel.stack_too_big())
+    return space.newbool(objectmodel.stack_too_big())
 too_big.unwrap_spec = [ObjSpace]
 
 def check():



More information about the Pypy-commit mailing list