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

9 lines
115 B
Python

class A(object):
@property
def x(self):
<the_doc>"Does things to X"
return 1
a = A()
a.<the_ref>x