add another crash reported by Thomas Wouters
authorNeal Norwitz <nnorwitz@gmail.com>
Wed, 11 Jan 2006 07:21:19 +0000 (07:21 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Wed, 11 Jan 2006 07:21:19 +0000 (07:21 +0000)
Lib/test/crashers/recursive_call.py [new file with mode: 0644]

diff --git a/Lib/test/crashers/recursive_call.py b/Lib/test/crashers/recursive_call.py
new file mode 100644 (file)
index 0000000..0776479
--- /dev/null
@@ -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)