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 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)