5

django/python コードの記述に Komodo 7 を使用しています。

Python の作業に Eclipse を使用したとき、私が本当に気に入ったことが 1 つあります。

assert isinstance([variable],[type])

そしてそれによって、Eclipse は特定の変数のコーディング補完を判断するのに役立ちます。

Komodo を使用してそれを行う方法はありますか? IsInstance トリックはここでは機能しません。

4

2 に答える 2

3

この同様の質問に対する(interjayによる)回答は、次のようなヒントを追加できることを示唆しています。

if 0: foo = Bar()

使い慣れた場所で

assert isinstance(foo, Bar)

もちろん、それほどきれいではありません...

編集:それは私のために、KomodoEdit6.0.3とKomodoEdit8.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 に答える