mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
9 lines
115 B
Python
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
|