Re: AutoComplete in C++ Editor for Python

2009-05-05 Thread justme
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

Re: AutoComplete in C++ Editor for Python

2009-05-04 Thread Scott David Daniels
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,

Re: AutoComplete in C++ Editor for Python

2009-05-04 Thread Dave Angel
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

Re: AutoComplete in C++ Editor for Python

2009-05-04 Thread flamz3d
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

Re: AutoComplete in C++ Editor for Python

2009-05-03 Thread Dave Angel
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

AutoComplete in C++ Editor for Python

2009-05-03 Thread flamz3d
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