#!/usr/local/bin/python3 class B(object): def __init__(self): self.a = 0 class C(B): def __init__(self): self._a = 1 super(B).__init__() @property def a(self): return self._a