Jim Carroll
Posts: 7
Nickname: mrmaple
Registered: Jan, 2006
|
|
Re: More power than polish.
|
Posted: Mar 3, 2007 2:06 PM
|
|
> Wing IDE, Komodo 4 or PyDev are good Python IDEs w/ pretty > decent code completion if you haven't run across them yet. > Makes it easier to sell to other developers, I agree.
It's true, I use Wing IDE regularly, and if you assert your isinstances at the top of your functions, then the code completion is just about perfect:
def fun(a, b, c): """ nice docstring. """ assert(isinstance(a, AsyncInterface)) assert(isinstance(b, BinaryStream)) assert(isinstance(c, Cache))
a.[list shows up just right]
But getting co-workers to do this is a pain... I still heard about the lack of code completion.
-Jim
|
|