Re: Autocompletion

2009-04-09 Thread Sorin Schwimmer
Sorry for being careless in my choice of words: when I wrote "dictionary", I meant a collection of words in any given human language, not a Python dictionary. Perhaps I should try to explain a bit more what I try to accomplish: in a notebook the user will write text, and certain words (collect

Re: Autocompletion

2009-04-09 Thread Tim Chase
Does anybody knows about a module to assist with text autocompletion for a given dictionary? On machines with the GNU readline library available, Python provides the "readline" module which should allow for auto-completion. -tkc -- http://mail.python.org/mailman/listinfo/python-list

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-27 Thread Fabio Zadrozny
> a) Intellisense (tells you what classes/methods are available and what > variables go into a function) > b) Code Completion (guesses your code after four letters) > c) Data-Orientation; multiple data sessions can be open, data can be > viewed easily > > Python's IDLE has only half of the first of

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-25 Thread Colin J. Williams
Anthony wrote: Hi, I'm a FoxPro programmer, but I want to learn python before it's too late. I do a lot of statistical programming, so I import SPSS into python. In my opinion, the best features of Visual FoxPro 9.0 were: a) Intellisense (tells you what classes/methods are available and what va

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread Aspersieman
> > On Jul 24, 4:10 am, Aspersieman <[EMAIL PROTECTED]> wrote: > >> Anthony wrote: >> >>> Hi, I'm a FoxPro programmer, but I want to learn python before it's >>> too late. I do a lot of statistical programming, so I import SPSS >>> into python. In my opinion, the best features of Visual

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread Anthony
FoxPro is data-oriented, which means that at any time you have any number of data sets open in the workspace and browse them immediately by running one line of code in the command window. It's a really important feature in terms of efficiency; I don't want to have to move back and forth between SP

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread arsyed
On Wed, Jul 23, 2008 at 5:28 PM, Anthony <[EMAIL PROTECTED]> wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellise

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread arsyed
On Wed, Jul 23, 2008 at 5:28 PM, Anthony <[EMAIL PROTECTED]> wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellise

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-24 Thread Aspersieman
Anthony wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellisense (tells you what classes/methods are available and

Re: Autocompletion and Interactive Tables in a Python IDE

2008-07-23 Thread s0suk3
On Jul 23, 4:28 pm, Anthony <[EMAIL PROTECTED]> wrote: > Hi, I'm a FoxPro programmer, but I want to learn python before it's > too late. I do a lot of statistical programming, so I import SPSS > into python. In my opinion, the best features of Visual FoxPro 9.0 > were: > a) Intellisense (tells yo

Re: Autocompletion in interactive mode doesn't work in 2.5.1

2007-06-12 Thread Papalagi Pakeha
On 6/12/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > On Jun 12, 9:36 am, "Papalagi Pakeha" wrote: > > Hi all, > > > > How can I turn on autocompletion when I push in python 2.5.1 > > interactive mode? E.g. to give me a list of all methods and attributes > > of a given object. > > http://docs

Re: Autocompletion in interactive mode doesn't work in 2.5.1

2007-06-12 Thread jitudon
On Jun 12, 9:36 am, "Papalagi Pakeha" <[EMAIL PROTECTED]> wrote: > Hi all, > > How can I turn on autocompletion when I push in python 2.5.1 > interactive mode? E.g. to give me a list of all methods and attributes > of a given object. > > It works great on my Linux / Ubuntu 7.04 installation but do