我正在使用内置模块插入一些实例,因此可以全局访问它们以进行调试。该__builtins__
模块的问题在于它是主脚本中的一个模块,并且是模块中的一个字典,但是由于我的脚本取决于案例可以是主脚本或模块,所以我必须这样做:
if isinstance(__builtins__, dict):
__builtins__['g_frame'] = 'xxx'
else:
setattr(__builtins__, 'g_frame', 'xxx')
有没有比这更短的解决方法?更重要的是,为什么会__builtins__
这样?
这是一个脚本来查看这个。创建一个模块 a.py:
#module-a
import b
print 'a-builtin:',type(__builtins__)
创建一个模块 b.py:
#module-b
print 'b-builtin:',type(__builtins__)
现在运行 python a.py:
$ python a.py
b-builtin: <type 'dict'>
a-builtin: <type 'module'>