Files
openide/python/testData/quickdoc/PropOldGetter.py
2010-09-03 18:10:42 +03:00

7 lines
119 B
Python

class A(object):
def __getX(self):
"Doc of getter"
return self.__x
x = property(__getX)
A().<the_ref>x