我有Python中的函數返回一個內部函數Python中獲取函數parent屬性
def parent_func(func):
def decorator(a,b):
return a + b
return decorator
的簡化讓我們考慮這個代碼
def in_func (a, b)
return a*b
child = parent_func (in_func)
人是否知道一種方式來獲得的「功能」孩子的parent_func的屬性?
你的「裝飾器」實際上並沒有用任何東西來裝飾'func'。 – 2011-03-08 15:38:25