[issue13468] Python 2.7.1 SegmentationFaults when given high recursion limit

2011-11-23 Thread Benjamin Peterson
Benjamin Peterson added the comment: Of course; that's what the recursion limit protects against. -- nosy: +benjamin.peterson resolution: -> invalid status: open -> closed ___ Python tracker _

[issue13468] Python 2.7.1 SegmentationFaults when given high recursion limit

2011-11-23 Thread Tom Dignan
New submission from Tom Dignan : On my system, the magic number to make this segfault seems to be 26200: tom@tralfamadore ~/Downloads $ python recur1.py 26199 160164968 tom@tralfamadore ~/Downloads $ python recur1.py 26200 Segmentation fault Here's the source: #!/usr/bin/python import sys