class Super: def __init__(self, x): print "super" + xclass Sub(Super): def __init__(self, x, y): Super.__init__(self, x)