I have a class like this:
class Foo(object): def __init__(self): self.bar = property(self.get_bar) def get_bar(self): return \"bar\" pr
The object is not instantiated.
class Foo(object): def get_bar(self): return "bar" bar = Foo() print(bar.get_bar)