blob: 071e8096a3811665ea8a530cbc97997a862bce55 [file] [log] [blame]
__author__ = 'ktisha'
class Base(object):
def __init__(self):
self.my = 1
class Child(Base):
def __init__(self):
super(Child, self).__init__()
def f(self):
self.my = 1