Files
openide/python/testData/intentions/PyConvertMethodToPropertyIntentionTest/simple.py
2013-04-25 13:04:13 +04:00

12 lines
171 B
Python

class MyClass(object):
"""
My class to show intention.
"""
def __init__(self):
self._x = None
def x<caret>(self):
return self._x
x = MyClass().x()