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