Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
quickdoc
/
PropNewSetter.py
blob: db8b396e8a8b9db700772dff0a11b492af10f87c [
file
] [
log
] [
blame
]
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