From: Neal Norwitz Date: Wed, 11 Jan 2006 07:21:19 +0000 (+0000) Subject: add another crash reported by Thomas Wouters X-Git-Tag: v2.5a0~835 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ae1df4112710fdfc7ffb6248b6a61b6b3cadd880;p=thirdparty%2FPython%2Fcpython.git add another crash reported by Thomas Wouters --- diff --git a/Lib/test/crashers/recursive_call.py b/Lib/test/crashers/recursive_call.py new file mode 100644 index 000000000000..077647995f12 --- /dev/null +++ b/Lib/test/crashers/recursive_call.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python + +# No bug report AFAIK, mail on python-dev on 2006-01-10 +import sys + +sys.setrecursionlimit(1 << 30) +f = lambda f:f(f) + +if __name__ == '__main__': + f(f)