diff options
Diffstat (limited to 'AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/compiler_recursion.py')
-rw-r--r-- | AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/compiler_recursion.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/compiler_recursion.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/compiler_recursion.py new file mode 100644 index 0000000000..7f00150c9f --- /dev/null +++ b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/compiler_recursion.py @@ -0,0 +1,5 @@ +"""
+The compiler (>= 2.5) recurses happily.
+"""
+
+compile('()'*9**5, '?', 'exec')
|