It's not a Python language specification, but a CPython implementation detail. Older version of the other implementation Python, PyPy, doesn't use Stack, and has no recursion depth limit.
https://doc.pypy.org/en/latest/stackless.html#recursion-depth-limit
You may try using PyPy to interpert your Python script if the maximum recursion depth in CPython doesn't satisfy your need.