tco
tco copied to clipboard
Tail Call Optimization for Python
Results
1
tco issues
Sort by
recently updated
recently updated
newest added
Hey, I'm trying to make the accumulator argument, `k`, in the simple factorial example implicit by using it as a keyword argument like so: @with_continuations() def factorial_kw(n, k=1, self=None): return...