blob: 5cfb8c150ead9cd3e001c13b49e4166994fc30e2 [file] [log] [blame]
Tor Norbye3a2425a52013-11-04 10:16:08 -08001__author__ = 'ktisha'
2
3class Base(object):
4 def __init__(self):
5 self.param = 2
6
7class Child(Base):
8 def f(self):
9 self.<caret>my = 2