]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/recursive_call.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / crashers / recursive_call.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/recursive_call.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/recursive_call.py
deleted file mode 100644 (file)
index 38bec3d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python\r
-\r
-# No bug report AFAIK, mail on python-dev on 2006-01-10\r
-\r
-# This is a "won't fix" case.  It is known that setting a high enough\r
-# recursion limit crashes by overflowing the stack.  Unless this is\r
-# redesigned somehow, it won't go away.\r
-\r
-import sys\r
-\r
-sys.setrecursionlimit(1 << 30)\r
-f = lambda f:f(f)\r
-\r
-if __name__ == '__main__':\r
-    f(f)\r