blob: 1c804030145129cefa96e9819a49e390fd86450d [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class MyClass(object):
2 """
3 My class to show intention.
4 """
5 def __init__(self):
6 self._x = None
7
8 @property
9 def x(self):
10 return self._x
11
12
13x = MyClass().x