mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
applying with the following precedence rules: Docstring: doc parameter of property() call, docstring of the actual accessor, docstring of the getter. Definition: actual accessor, getter.
13 lines
157 B
Python
13 lines
157 B
Python
class C:
|
|
@property
|
|
def m(self):
|
|
"""
|
|
Foo
|
|
"""
|
|
pass
|
|
|
|
@m.setter
|
|
def m(self, x):
|
|
pass
|
|
|
|
C().<the_ref>m = 42 |