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