Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
quickdoc
/
PropNewSetter.py
blob: db8b396e8a8b9db700772dff0a11b492af10f87c [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
A
(
object
):
2
@property
3
def
x
(
self
):
4
"Does things to X"
5
return
1
6
7
@x
.
setter
8
def
x
(
self
,
v
):
9
"Sets X"
10
self
.
__x
=
v
11
12
A
().<
the_ref
>
x
=
1