blob: 5cfb8c150ead9cd3e001c13b49e4166994fc30e2 [file] [log] [blame]
__author__ = 'ktisha'
class Base(object):
def __init__(self):
self.param = 2
class Child(Base):
def f(self):
self.<caret>my = 2