blob: 88866c150e1d2926a66688ebde63a9f5b325acdf [file] [log] [blame]
class Parent:
pass
class Child(Parent):
def __init__(self):
Parent2.__init__(self)
self.instance_field = "eggs"