class b(): def __init__(self): print 'b__init__' class a(b): def __init__(self): print 'a__init__' ins = a()