from functools import wraps
def test(func):
@wraps(func)
def inner_func():
inner_obj = 'inner_obj'
print(inner_obj)
return func()
return inner_func
@test
def test_func():
return False
a = test_func()
print(a)
我想在test_func中获取装饰器的inner_obj变量,能实现吗??请问
繁星点点滴滴
慕神8447489
呼唤远方
相关分类