Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
completion
/
propertyAfterAccessor.py
blob: 95f719795adbff06959b4dfd42ff44476e7fcc20 [
file
] [
log
] [
blame
]
class
C
(
object
):
def
__init__
(
self
):
self
.
_x
=
None
@property
def
x
(
self
):
return
self
.
_x
@x
.
setter
def
x
(
self
,
value
):
self
.
_x
=
value
@x
.
d
<
caret
>