From 5561986da3e1cfab1b7168e546678a5015f39634 Mon Sep 17 00:00:00 2001 From: Armin Rigo Date: Fri, 6 Feb 2009 11:46:26 +0000 Subject: [PATCH] Ivan on IRC in #twisted reported this crasher. --- Lib/test/crashers/compiler_recursion.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Lib/test/crashers/compiler_recursion.py diff --git a/Lib/test/crashers/compiler_recursion.py b/Lib/test/crashers/compiler_recursion.py new file mode 100644 index 00000000000..4954bdd8f0f --- /dev/null +++ b/Lib/test/crashers/compiler_recursion.py @@ -0,0 +1,5 @@ +""" +The compiler (>= 2.5) recurses happily. +""" + +compile('()'*9**5, '?', 'exec')