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

12 lines
160 B
Python

class A(object):
@property
def x(self):
"Does things to X"
return 1
@x.setter
def x(self, v):
"Sets X"
self.__x = v
A().<the_ref>x = 1