在 Komodo Edit 中添加来自其他文件的调用提示

Adding calltips from other files in Komodo Edit

我在 Python 2.7.11 中使用 Komodo Edit。我想让 Komodo 显示其他文件中定义的函数的调用提示。

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( 时显示提示 "Show that you love apples"。

如果您使用 import 而不是 execfile,Komodo 会在您的示例中为您提供调用提示,我怀疑它识别 execfile 的方式与 import 相同。