Re: failing to instantiate an inner class because of order of inner classes

2006-12-27 Thread Pyenos
"Edward Kozlowski" <[EMAIL PROTECTED]> writes: > Pyenos wrote: > > class model:pass > > class view: > > model() > > class controller: > > model() > > > > I can instantiate clsss model from inside class view but I can't > > instantiate class model from inside controller, due to the

Re: failing to instantiate an inner class because of order of inner classes

2006-12-27 Thread Edward Kozlowski
Pyenos wrote: > class model:pass > class view: > model() > class controller: > model() > > I can instantiate clsss model from inside class view but I can't > instantiate class model from inside controller, due to the nature of > python interpreter. > > I wish to circumvent this rest

failing to instantiate an inner class because of order of inner classes

2006-12-27 Thread Pyenos
class model:pass class view: model() class controller: model() I can instantiate clsss model from inside class view but I can't instantiate class model from inside controller, due to the nature of python interpreter. I wish to circumvent this restriction by: class model:pass clas