5

我正在使用 Komodo 7 编写我的 django/python 代码。

当我将 Eclipse 用于我的 python 东西时,我真的很喜欢一件事,那就是我可以做到:

assert isinstance([variable],[type])

并通过帮助 eclipse 确定特定变量的编码完成。

有没有办法使用 Komodo 来做到这一点?IsInstance 技巧在这里不起作用。

4

2 回答 2

3

这个类似问题的答案(由 interjay 提供)建议您可以添加以下提示:

if 0: foo = Bar()

在你习惯使用的地方

assert isinstance(foo, Bar)

没那么漂亮,当然...

编辑:它适用于我,使用 Komodo Edit 6.0.3 和 Komodo Edit 8.0.0

编辑:我也发现了这个,这表明没有其他方法(而且不太可能很快)。

于 2013-03-15T22:10:52.787 回答
1
Go to Edit > Preferences. 
Expand the "Languages" group by clicking the [+] symbol. 
Click "Python". 
Click the little "Add..." button under "Additional Python Import Directories". 
Add the directory ABOVE your project and you should have intellisense enabled.

这将允许您查看项目文件的代码完成 (Django)

于 2013-03-16T01:39:46.897 回答