'Intellisense' possible for Python?
Greg Brunet
gbrunet at nospamsempersoft.com
Thu Dec 19 11:53:43 EST 2002
"Terry Reedy" <tjreedy at udel.edu> wrote in message
news:n0-dnYJ3NeDd_JyjXTWcpg at comcast.com...
>
> > Coming from a VB background where the IDE allows you to view &
> > auto-complete all of the properties & methods of an object, it's
> > disappointing not to have it - at least in the IDE's I've looked
> > into so
> > far. While I get this kind of behavior for modules in PythonWin
> > (automatically)
>
> It does the same for most everything with a name. Type
> >>> a=''
> >>> a.
> and a box pops up with a list of all string methods. Add a 'j' and
> the hilite jumps down to 'join'. Hit tab and it fills in 'oin'.
> However, ''. gets no response.
>
> It also offers a signature for functions.
Thanks Terry:
I mentioned some of this in my response to Patrick, but, while the popup
box of string methods appears in the Interactive Window, it doesn't do
so in a script editing window - at least not until you've run the
script. Also, when it does occur, all of the methods appear twice (at
least on my machine). I also tested Idle, and while it too provides
function signatures, it doesn't support the method popup box.
--
Greg
More information about the Python-list
mailing list