Re: Inheritance in nested classes

2005-11-15 Thread gmilas
"I'm using the Active Server Pages integration in the win32 extensions, does anyone have good/bad experiences using this interface?" What is it you are trying to do? I'm using python2.4 with win32 and IIS/python ASP and find it ok. There were at some point some session overlappings but I'm not su

Re: Inheritance in nested classes

2005-11-15 Thread George Sakkis
"Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > But I hope you are aware that nested classes aren't quite the same as > they are in java, are you? Actually they are more like java's static inner classes. If you want to simulate non-static inner classes in python, you may check the recipe here: ht

Re: Inheritance in nested classes

2005-11-15 Thread Diez B. Roggisch
Martin Skou wrote: > I'm experimenting with using Python for a small web interface, using > Mark Hammond's nice win32 extensions. > > I use a small class hierarchy which uses inheritance and nested classes. > > Here are a small extract of the code: > > class page: > > def __init__(s

Inheritance in nested classes

2005-11-15 Thread Martin Skou
I'm experimenting with using Python for a small web interface, using Mark Hammond's nice win32 extensions. I use a small class hierarchy which uses inheritance and nested classes. Here are a small extract of the code: class page: def __init__(self): self.head=[]