blob: 36721bf5f1be04d312433aa386df06c26a61fd3f [file] [log] [blame]
class Parent(object):
C = 12
def foo(self):
pass
class Child(Parent, object):
def __init__(self):
self.foo = 12
AC = 11
def foo(self):
pass
class Bar(object):
pass