Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
quickdoc
/
PropNewDeleter.py
blob: 82bf50196bb5c930252bcf599f294bd6b880d7eb [
file
] [
log
] [
blame
]
class
A
(
object
):
@property
def
x
(
self
):
"Does things to X"
return
1
@x
.
deleter
def
x
(
self
,
v
):
"Deletes X"
self
.
__x
=
None
del
A
().<
the_ref
>
x