Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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