thanks i already have perfect iterative versions of fibonacci.
def fib(n):
a, b = 1, 0
while n:
a, b, n = b, a+b, n-1
return bI know the example is not the way to write pythonic code, I was just learning about decorators and then I saw this example and tried it out. but thanks now i understand why it didn't work. -- http://mail.python.org/mailman/listinfo/python-list
