so I try it and when I run:
@Decorators.tai l_recursion
def fibtr(n):
def fibt(a, b, n):
if n <= 1:
return b
else:
return fibt(b, a + b, n - 1)
if n == 0:
return 0
else:
return fibt(0, 1, n);
it still blows the stack. so what is the point? is it impossible to
get "real" tail-recursion in Python?
Comment