summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2009-02-06 11:46:26 (GMT)
committerArmin Rigo <arigo@tunes.org>2009-02-06 11:46:26 (GMT)
commit5561986da3e1cfab1b7168e546678a5015f39634 (patch)
tree6b3c3751f4d5110ccad41b3cb1291391a04139cb /Lib
parente20f54f542195e053653b1902db7a4c1642f4589 (diff)
downloadcpython-5561986da3e1cfab1b7168e546678a5015f39634.zip
cpython-5561986da3e1cfab1b7168e546678a5015f39634.tar.gz
cpython-5561986da3e1cfab1b7168e546678a5015f39634.tar.bz2
Ivan on IRC in #twisted reported this crasher.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/crashers/compiler_recursion.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/crashers/compiler_recursion.py b/Lib/test/crashers/compiler_recursion.py
new file mode 100644
index 0000000..4954bdd
--- /dev/null
+++ b/Lib/test/crashers/compiler_recursion.py
@@ -0,0 +1,5 @@
+"""
+The compiler (>= 2.5) recurses happily.
+"""
+
+compile('()'*9**5, '?', 'exec')