Trying to understand super(). From the looks of it, both child classes can be created just fine. Im curious as to what difference there actually is in this code:
class base(object):
def __init__(self):
print "base created"
class child_a(base):
def __init__(self):
base.__init__(self)
class child_b(base):
def __init__(self):
super(child_b, self).__init__()
print child_a(),child_b()
