blob: 64155c7ad8455010c1d67c3a521da21078ee6e55 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class A(object):
2 def __getX(self):
3 "Doc of getter"
4 return self.__x
5 x = property(__getX)
6
7A().<the_ref>x