exception RecursionError
This exception is derived from RuntimeError
. It is raised when the interpreter detects that the maximum recursion depth (see sys.getrecursionlimit()
) is exceeded.
New in version 3.5: Previously, a plain RuntimeError
was raised.
Please login to continue.