Author: Lars Wassermann <[email protected]>
Branch: 
Changeset: r133:a22cedb502be
Date: 2013-03-07 14:10 +0100
http://bitbucket.org/pypy/lang-smalltalk/changeset/a22cedb502be/

Log:    reduced the default smalltalk max stack size to 100

diff --git a/spyvm/interpreter.py b/spyvm/interpreter.py
--- a/spyvm/interpreter.py
+++ b/spyvm/interpreter.py
@@ -33,7 +33,7 @@
         get_printable_location=get_printable_location
     )
     
-    def __init__(self, space, image=None, image_name="", max_stack_depth=500):
+    def __init__(self, space, image=None, image_name="", max_stack_depth=100):
         self.space = space
         self.image = image
         self.image_name = image_name
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to