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

7 lines
128 B
Python

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