This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jackjansen
Recipients
Date 2003-06-18.13:01:06
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Python's recursion limit is too high for Mac OS X, where the 
default stack size is 512K. The attached script will never 
trigger a maximum recursion depth exception, it will have 
crashed Python with a segmentation violation before that.

A possible solution is a call to sys.setrecursionlimit() in 
site.py, another is to change the number "1000" in ceval.c 
to a configure-time constant.

Other platforms may also suffer this problem, it may be a 
good idea to add a test_stackoverflow.

I'm willing to do the work involved, but I'd like some 
feedback first.
History
Date User Action Args
2007-08-23 14:14:03adminlinkissue756576 messages
2007-08-23 14:14:03admincreate