Re: [Tutor] Re: Class - superclass

2005-04-11 Thread Bernard Lebel
Thanks a lot, now it's clear. Bernard On Apr 8, 2005 3:48 PM, Andrei <[EMAIL PROTECTED]> wrote: > Bernard Lebel wrote on Fri, 8 Apr 2005 15:05:13 -0400: > > > I'm experimenting with basic inheritance concepts, and something that > > I would assume to work returns an error. > > > class A:

[Tutor] Re: Class - superclass

2005-04-08 Thread Andrei
Bernard Lebel wrote on Fri, 8 Apr 2005 15:05:13 -0400: > I'm experimenting with basic inheritance concepts, and something that > I would assume to work returns an error. > class A: > ... def __init__( self ): > ... self.a = 13 > ... class B( A ): # create sub-class of cl