Re: Looking for an intellisense with good help IDE for Python

2006-08-09 Thread taleinat
Miki gmail.com> writes: > The IDLE that will come (soon) with Python 2.5 with have some > intellisense. Not all that you requested but some of it. > On the same note, IDLE's completion module has received some serious upgrades recently (such as dictionary key completion and case-insensitive com

Re: Looking for an intellisense with good help IDE for Python

2006-08-08 Thread taleinat
metaperl gmail.com> writes: > Hi, > > I would like an IDE that shows me all methods and functions I can call > on a particular data item. For instance, iter() can be called on any > sequence, but it is not a method. > > Nonetheless, I would like for something to show me every thing that I > can

Re: help - iter & dict

2006-08-04 Thread taleinat
mappi.helsinki.fi> writes: > CDSitdict = {28.473823598317392: "'2.48699832'", 40.06163037274758: > "'0.2912'", 27.756248559438422: "'2.83499964'", > 33.2299196586726: "'1.12499962'", 29.989685187220061: > "'1.91399677'", 31.502319473614037: "'1.490

Re: regex question

2006-08-04 Thread taleinat
Gabriel Murray gmail.com> writes: > > Hello, I'm looking for a regular expression which will match strings as follows: if there are symbols a, b, c and d, then any pattern is valid if it begins with a and ends with d and proceeds in order through the symbols. However, at any point the pattern ma

Re: help - iter & dict

2006-08-03 Thread taleinat
Ali writes: >> Im trying to iterate through values in a dictionary so i can find the >> closest value and then extract the key for that valuewhat ive done so >> far: >> >> def pcloop(dictionary, exvalue): >> z = dictionary.itervalues() >> y = z - exvalue >> v = (y*y)*