blob: 31c89633032a651fa936c69d1aa4ed23bb77ec96 [file] [log] [blame]
Neal Norwitzae1df412006-01-11 07:21:19 +00001#!/usr/bin/env python
2
3# No bug report AFAIK, mail on python-dev on 2006-01-10
Armin Rigob62efad2006-07-25 18:38:39 +00004
5# This is a "won't fix" case. It is known that setting a high enough
6# recursion limit crashes by overflowing the stack. Unless this is
7# redesigned somehow, it won't go away.
8
Neal Norwitzae1df412006-01-11 07:21:19 +00009import sys
10
11sys.setrecursionlimit(1 << 30)
12f = lambda f:f(f)
13
14if __name__ == '__main__':
15 f(f)