blob: f3e69d292d93684f0cc1e6b62f4be1ba299d1ec7 [file] [log] [blame]
class C(object):
bar = property(lambda self: 'bar')
c = C()
print(c.bar, c.bar)