Re: mi

2010-08-11 Thread Chris Rebert
On Wed, Aug 11, 2010 at 12:45 PM, Eric J. Van der Velden wrote: > Hello, > > I have these types, > > class A: >        def __init__(s): >                super().__init__() >                print("A") > class B(A): >        def __init__(s): >                super().__init__() >                print

Re: mi

2010-08-11 Thread Thomas Jollans
On Wednesday 11 August 2010, it occurred to Eric J. Van der Velden to exclaim: > Hello, > > I have these types, > > class A: > def __init__(s): > super().__init__() > print("A") > class B(A): > def __init__(s): > super().__init__() >