我尝试使用以下代码创建装饰器。
def outer():
def inner():
print 'inner called'
return inner
foo = outer()
foo()
但它给出了错误
TypeError: 'NoneType' object is not callable
请解决我的问题。谢谢..
我尝试使用以下代码创建装饰器。
def outer():
def inner():
print 'inner called'
return inner
foo = outer()
foo()
但它给出了错误
TypeError: 'NoneType' object is not callable
请解决我的问题。谢谢..