我在Python 2.7.11中使用Komodo Edit。我想这样做,以便Komodo显示其他文件中定义的函数的calltips。
在JavaScript上有一个解决方案,因为我发现here,但我找不到一个用于python。
例如:
apple.py :
def apple():
"""Show that you love apples"""
print "I love apples!"
apple_caller.py :
execfile("apple.py")
apple(
当我在apple_caller.py中输入apple(
时,我想要显示呼叫提示“显示你爱苹果”。
答案 0 :(得分:1)
如果您使用import
代替execfile
,Komodo会在您的示例中为您提供呼叫提示。我怀疑它是否execfile
与import
相同。