summaryrefslogtreecommitdiff
path: root/python/testData/intentions/PyConvertMethodToPropertyIntentionTest/property.py
blob: 188567a6e00cf0ff497ba79ff56c9d5440190ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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()