From ae1df4112710fdfc7ffb6248b6a61b6b3cadd880 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 11 Jan 2006 07:21:19 +0000 Subject: add another crash reported by Thomas Wouters --- Lib/test/crashers/recursive_call.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Lib/test/crashers/recursive_call.py diff --git a/Lib/test/crashers/recursive_call.py b/Lib/test/crashers/recursive_call.py new file mode 100644 index 0000000..0776479 --- /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) -- cgit v0.12