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