函数修饰器问题
参见《Python核心编程》例11.2看了其上的代码,对函数修饰器进行了简单的测试,有几个问题:
代码:
def tsfunc(func):
a = 2
def func2():
# a = 2
print '%s is called' % func.__name__
print 'a = %s' % a
return func()
return func2
@tsfunc
def func3():
print 'Here is func3'
return None
func3()
print 'func3.name is %s ' % func3.__name__
IDLE返回的结果是:
func3 is called
a = 2
Here is func3
func3.name is func2
如上所述,
1,func3.name返回的结果是func2,这个是什么问题?
2,内嵌函数的执行顺序是从外到里吗? 数学中的内嵌函数都是从里到外的!
3,对于内嵌函数不能够有参数,例如如下的code:
import sys
def tsfunc(func):
def func2(a):
# a = 2
print '%s is called' % func.__name__
print 'a = %s' % a
return func()
return func2(2)
@tsfunc
def func3():
print 'Here is func2'
return None
func3()
[RESULT]:
func3 is called
a = 2
Here is func2
Traceback (most recent call last):
File "D:/Python27/test/func2.py", line 17, in <module>
func3()
TypeError: 'NoneType' object is not callable
这个‘NoneType’错误是怎么发生的? 是什么问题?
[ 本帖最后由 liuxufeng 于 2012-7-30 08:58 编辑 ]