[Python-checkins] r69365 - python/trunk/Lib/test/crashers/compiler_recursion.py

armin.rigo python-checkins at python.org
Fri Feb 6 12:46:26 CET 2009


Author: armin.rigo
Date: Fri Feb  6 12:46:26 2009
New Revision: 69365

Log:
Ivan on IRC in #twisted reported this crasher.


Added:
   python/trunk/Lib/test/crashers/compiler_recursion.py   (contents, props changed)

Added: python/trunk/Lib/test/crashers/compiler_recursion.py
==============================================================================
--- (empty file)
+++ python/trunk/Lib/test/crashers/compiler_recursion.py	Fri Feb  6 12:46:26 2009
@@ -0,0 +1,5 @@
+"""
+The compiler (>= 2.5) recurses happily.
+"""
+
+compile('()'*9**5, '?', 'exec')


More information about the Python-checkins mailing list