Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
quickdoc
/
PropOldSetter.py
blob: 91bf809d070b7c1d6fb02bb73f4348600d8f18bf [
file
] [
log
] [
blame
]
class
A
(
object
):
def
__getX
(
self
,
x
):
"Doc of getter"
self
.
__x
=
x
x
=
property
(
fset
=
__getX
)
A
().<
the_ref
>
x
=
1