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

13 lines
188 B
Python

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()