> ChrisA
Yes, that works. Thank you all for your help. -->
class A:
def __init__(self):
self.number = 1
def A_biginc(self):
self.number += 107
A.biginc = A_biginc
class B(A):
def __init__(self):
super().__init__()
print("making a B")
def B_biginc(self):
super(B,self).bi
> # this prints for me when I run this in 3.6
excuse me, that is an extraneous comment from a cut and paste, in fact the
example never makes it to the prints, as shown in the transcript just below the
source code
--
https://mail.python.org/mailman/listinfo/python-list