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