I the rope project http://rope.sourceforge.net/ has an autocomplete
lib.
(I have not used it just remember reading about it)
--
http://mail.python.org/mailman/listinfo/python-list
flam...@gmail.com wrote:
... Using this code, I can get information like the name of the symbol
(x), but I can't figure out how to get the type. If I knew how to get
this it would solve 99% of my problems :)
If Python were statically typed, you might be correct.
A _value_ in python has a type,
flam...@gmail.com wrote:
On May 3, 3:14 pm, Dave Angel wrote:
flam...@gmail.com wrote:
Hello,
I am embedding python support in my C++ application and was looking at
adding "Intellisense" or "AutoComplete" support.
I found a way to do it using the "dir" function, but this creates
On May 3, 3:14 pm, Dave Angel wrote:
> flam...@gmail.com wrote:
> > Hello,
> > I am embedding python support in my C++ application and was looking at
> > adding "Intellisense" or "AutoComplete" support.
>
> > I found a way to do it using the "dir" function, but this creates a
> > problem. Here's w
flam...@gmail.com wrote:
Hello,
I am embedding python support in my C++ application and was looking at
adding "Intellisense" or "AutoComplete" support.
I found a way to do it using the "dir" function, but this creates a
problem. Here's why. Let's say I have the following code in my editor:
impo
Hello,
I am embedding python support in my C++ application and was looking at
adding "Intellisense" or "AutoComplete" support.
I found a way to do it using the "dir" function, but this creates a
problem. Here's why. Let's say I have the following code in my editor:
import sys
x = sys
Now, I wou