Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
quickdoc
/
PropNewDeleter.py
blob: 82bf50196bb5c930252bcf599f294bd6b880d7eb [
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
.
deleter
8
def
x
(
self
,
v
):
9
"Deletes X"
10
self
.
__x
=
None
11
12
del
A
().<
the_ref
>
x