[Python-checkins] r42011 - python/trunk/Lib/test/crashers/recursive_call.py

neal.norwitz python-checkins at python.org
Wed Jan 11 08:21:19 CET 2006


Author: neal.norwitz
Date: Wed Jan 11 08:21:19 2006
New Revision: 42011

Added:
   python/trunk/Lib/test/crashers/recursive_call.py
Log:
add another crash reported by Thomas Wouters

Added: python/trunk/Lib/test/crashers/recursive_call.py
==============================================================================
--- (empty file)
+++ python/trunk/Lib/test/crashers/recursive_call.py	Wed Jan 11 08:21:19 2006
@@ -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)


More information about the Python-checkins mailing list