我有一个非常奇怪的问题,我不明白。我正在扩展pwman3,并使用模块选择。我将它导入到ui.py文件的顶部。
但是,当我运行代码时,出现以下错误:
错误:“函数”对象没有属性“选择”
相关代码为:
import select
...snip...
class PwmanCli(cmd.Cmd):
...snip ...
def print_node(self, node):
width = str(_defaultwidth)
print "Node %d." % (node.get_id())
print ("%"+width+"s %s") % (typeset("Username:", ANSI.Red),
node.get_username())
print ("%"+width+"s %s") % (typeset("Password:", ANSI.Red),
node.get_password())
print ("%"+width+"s %s") % (typeset("Url:", ANSI.Red),
node.get_url())
print ("%"+width+"s %s") % (typeset("Notes:", ANSI.Red),
node.get_notes())
print typeset("Tags: ", ANSI.Red),
for t in node.get_tags():
print "%s " % t.get_name(),
print
def heardEnter():
#import select # this fixes the problem ...
i,o,e = select.select([sys.stdin],[],[],0.0001)
for s in i:
if s == sys.stdin:
input = sys.stdin.readline()
return True
return False
def waituntil_enter(somepredicate,timeout, period=0.25):
mustend = time.time() + timeout
while time.time() < mustend:
if somepredicate():
break
time.sleep(period)
self.do_cls('')
print "Type Enter to flush screen (autoflash in 5 sec.)"
waituntil_enter(heardEnter(), 5)
如果我import select
在函数内部做,heardEnter
一切正常。但我仍然想知道是什么导致了这种行为。
很高兴听到一些专家的声音。