summaryrefslogtreecommitdiff
path: root/python/testData/intentions/PyConvertMethodToPropertyIntentionTest/noReturn.py
blob: 649a90b039581ee4520ab2f382c679387332f8f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class MyClass(object):
  """
  My class to show intention.
  """
  def __init__(self):
      self._x = None

  def x<caret>(self):
      print self._x


x = MyClass().x()