Exemplo n.º 1
0
 def __init__(self, l):
     MyList.__init__(self, l)
     self.adds = 0 # this is an instance variable
Exemplo n.º 2
0
 def __add__(self, other):
     MySubList.calls += 1
     self.adds += 1
     return MyList.__add__(self, other)