我想动态声明一个函数,并且我想包装对全局变量的任何访问,或者定义哪些变量是免费的并包装对自由变量的任何访问。
我正在玩这样的代码:
class D:
def __init__(self):
self.d = {}
def __getitem__(self, k):
print "D get", k
return self.d[k]
def __setitem__(self, k, v):
print "D set", k, v
self.d[k] = v
def __getattr__(self, k):
print "D attr", k
raise AttributeError
globalsDict = D()
src = "def foo(): print x"
compiled = compile(src, "<foo>", "exec")
exec compiled in {}, globalsDict
f = globalsDict["foo"]
print(f)
f()
这将产生输出:
D set foo <function foo at 0x10f47b758>
D get foo
<function foo at 0x10f47b758>
Traceback (most recent call last):
File "test_eval.py", line 40, in <module>
f()
File "<foo>", line 1, in foo
NameError: global name 'x' is not defined
我想要的是以某种方式x
使用我的 dict-like wrapper获取访问权限D
。我怎样才能做到这一点?
我不想预定义所有全局变量(在这种情况下x
),因为我希望能够懒惰地加载它们。