#!/usr/local/bin/python2 class A(object): def __init__(self): self.a = 1 class B(A): def __init__(self): super(self, B).__init__(self) self._a = super(self, B).a B()._a