[Python-Dev] Cleaning up Misc/ directory

Neil Schemenauer nas@python.ca
Mon, 6 Aug 2001 11:39:06 -0700


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