blob: 4dc2613e8ca417395952306ce1fc468644739714 [file] [log] [blame]
__author__ = 'ktisha'
class Base(object):
def __init__(self):
self.param = 2
class Child(Base):
def __init__(self):
super(Child, self).__init__()
self.my = 2
def f(self):
pass