I have the following piece of code which fails with the following error:
RuntimeError: maximum recursion depth exceeded
I attemp
CPython does not and will probably never support tail call optimization based on Guido van Rossum's statements on the subject.
I've heard arguments that it makes debugging more difficult because of how it modifies the stack trace.