Re: Strongly typed list

2009-08-18 Thread Diez B. Roggisch
هاني الموصلي wrote: > I think i found a good managable solution. Actually it is trivial but > may help (I used it now). > When i wnat to access the list then i assign the object which i want > to access to a variable ex: > 1)x=AutomataBranch() > 2)x=self.cfgAutomata[i] > > The first line is used

Re: Strongly typed list

2009-08-18 Thread هاني الموصلي
I think i found a good managable solution. Actually it is trivial but may help (I used it now). When i wnat to access the list then i assign the object which i want to access to a variable ex: 1)x=AutomataBranch() 2)x=self.cfgAutomata[i] The first line is used only to make the IDE knows that x is

Re: Strongly typed list

2009-08-18 Thread Albert Hopkins
On Tue, 2009-08-18 at 08:46 +0200, Diez B. Roggisch wrote: <هاني الموصلي schrieb: > > Please could you lead me to a way or a good IDE that makes developing > > huge projects in python more easier than what i found.Now i am using > > eclips. Actually it is very hard to remember all my classes metho

Re: Strongly typed list

2009-08-18 Thread Diez B. Roggisch
هاني الموصلي schrieb: Please could you lead me to a way or a good IDE that makes developing huge projects in python more easier than what i found.Now i am using eclips. Actually it is very hard to remember all my classes methods and attributes or copy and paste them each time. Thanks very much fo

Re: Strongly typed list

2009-08-17 Thread Jonathan Gardner
On Aug 17, 2:19 pm, هاني الموصلي wrote: > Please could you lead me to a way or a good IDE that makes developing > huge projects in python more easier than what i found.Now i am using > eclips. Actually it is very hard to remember all my classes methods > and attributes or copy and paste them each

Re: Strongly typed list

2009-08-17 Thread Fabio Zadrozny
> Hello, I am using eclips for python and i am facing a problem. I have > many classes with many properties and want a list of objects from one > of my declared classes. The problem is:When i am accessing any item > from the list, the IDE does not know it's type because in python we do > not declar

Strongly typed list

2009-08-17 Thread هاني الموصلي
Hello, I am using eclips for python and i am facing a problem. I have many classes with many properties and want a list of objects from one of my declared classes. The problem is:When i am accessing any item from the list, the IDE does not know it's type because in python we do not declare the vari