blob: 188567a6e00cf0ff497ba79ff56c9d5440190ace [file] [log] [blame]
class MyClass(object):
"""
My class to show intention.
"""
def __init__(self):
self._x = None
@property
def x<caret>(self):
return self._x
x = MyClass().x()