Andrew Kuchling wrote: > find_recursionlimit.py : unnecessary now that sys.getrecursionlimit() > exists. Those two don't do the same thing. sys.getrecursionlimit() returns the current limit. find_recursionlimit.py tries to find out how high you can set it until you run out of stack space. Neil