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