访问 python 装饰器的本地范围内的变量 [duplicate]

Accessing variables in the local scope of a python decorator [duplicate]

提问人:Jim 提问时间:5/28/2023 最后编辑:Jim 更新时间:5/28/2023 访问量:22

问:

考虑:

def g(value):
    def f():
        return value
    return f

x = g(3)
x() # prints 3

在示例中给出,返回的闭包来自 ,有没有办法在不调用的情况下检查 的值?xg(3)valuex()

Python 作用域 闭包本地

评论

0赞 Mechanic Pig 5/28/2023
示例中有一个错别字,您忘记了。return fg

答:

0赞 juanpa.arrivillaga 5/28/2023 #1

是的,您可以直接在 Python 中反省函数的闭包:

>>> def g(value):
...     def f():
...         return value
...     return f
...
>>> func = g(42)
>>> func.__closure__
(<cell at 0x1077b5a80: int object at 0x1075b4618>,)

然后,如果你想要这个值:

>>> cell =  func.__closure__[0]
>>> cell.cell_contents
42