X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=AppPkg%2FApplications%2FPython%2FPython-2.7.2%2FLib%2Ftest%2Fcrashers%2Frecursive_call.py;fp=AppPkg%2FApplications%2FPython%2FPython-2.7.2%2FLib%2Ftest%2Fcrashers%2Frecursive_call.py;h=0000000000000000000000000000000000000000;hb=964f432b9b0afe103c41c7613fade3e699118afe;hp=38bec3d9daf215e3dbaad1128bed7c264e65420e;hpb=e2d3a25f1a3135221a9c8061e1b8f90245d727eb;p=mirror_edk2.git 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 index 38bec3d9da..0000000000 --- a/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/recursive_call.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python - -# No bug report AFAIK, mail on python-dev on 2006-01-10 - -# This is a "won't fix" case. It is known that setting a high enough -# recursion limit crashes by overflowing the stack. Unless this is -# redesigned somehow, it won't go away. - -import sys - -sys.setrecursionlimit(1 << 30) -f = lambda f:f(f) - -if __name__ == '__main__': - f(f)