Re: No duplicate variable

2009-11-20 Thread Terry Reedy
King wrote: class A(object): def __init__(self, value=0.): self.value = value class B(A): def __init__(self, value=None): A.__init__(self) self.value = value obj = B() When "B" initializes, it overwrite "value" variable of "A". How do I make sure that no variabl

Re: No duplicate variable

2009-11-20 Thread Diez B. Roggisch
King schrieb: class A(object): def __init__(self, value=0.): self.value = value class B(A): def __init__(self, value=None): A.__init__(self) self.value = value obj = B() When "B" initializes, it overwrite "value" variable of "A". How do I make sure that no varia