Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
quickdoc
/
PropOldSetter.py
blob: 91bf809d070b7c1d6fb02bb73f4348600d8f18bf [
file
] [
log
] [
blame
]
class
A
(
object
):
def
__getX
(
self
,
x
):
"Doc of getter"
self
.
__x
=
x
x
=
property
(
fset
=
__getX
)
A
().<
the_ref
>
x
=
1