My code is very simple. it's for a test, but i get a big error :nonetype is not callable:
def deco(when):
def wrapper(fun):
print 'before call myfun'
fun()
print 'after call myfun'
return wrapper
@deco('a')
def fun():
print 'in fun1'
fun()
But when it is slightly modified,the error is removed:
def deco(when):
def wrapper(fun):
def dec():
print 'before call myfun'
fun()
print 'after call myfun'
return dec
return wrapper
@deco('a')
def fun():
print 'in fun'
fun()
Can you tell the reason? I was totally confused.
Morever, in the second code block, how can the methon wrapper() visit the variable ‘fun’,the variable ‘fun’ is not in the context(the arg of upper methond is 'when' instead of 'fun'), i am confused too.
Thanks your help
When a decorator is provided with arguments, it is treated as a 'decorator generator', and must return a proper decorator.
See also python decorators with parameters.