#!/usr/local/bin/python2 class C(object): def __init__(self): self.a = 1 self.a = property(self.a) print C().a.get