Python:在外部shell中进行的定义会得到一个糟糕的`.__ module__`属性
作者:互联网
我正在制作一个wxPython应用程序,它为用户提供了一个shell供我使用. (这是wx.lib.shell.PyShell
,wxPython附带的shell.)
问题是,在这个shell中做出的定义有一个糟糕的.__ module__属性.例如:
>>> def f(): 0
...
>>> f.__module__
>>> f.__module__ is None
True
>>> class A(object):
... pass
...
>>>
>>> A.__module__
'__builtin__'
我认为这两个对象的.__ module__属性应该是__main__.不确定.但它绝对不应该是None或__builtin__.
如何让shell为这些函数和类提供良好的.__ module__属性?
解决方法:
在IDLE和wxPython Demo的PyShell演示中,我得到以下内容:
>>> def f(): 0
>>> f.__module__
'__main__'
>>> f.__module__ is None
False
>>> class A(object):
pass
>>> A.__module__
'__main__'
它似乎对我有效.我不确定你在你的机器上做了什么.我在Windows XP上使用Python 2.5,wxPython 2.8.10.1.
标签:python,shell,module,read-eval-print-loop,wxpython 来源: https://codeday.me/bug/20190710/1421123.html