Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
quickFixes
/
PyMakePublicQuickFixTest
/
negative.py
blob: c5c062f478b91227820681ce008b7569bbbc681e [
file
] [
log
] [
blame
]
class
A
:
@property
def
x
(
self
):
return
self
.
_x
def
__init__
(
self
):
self
.
_x
=
1
def
_foo
(
self
):
print
(
self
.
_x
)
a
=
A
()
a
.
_foo
()
print
(
a
.
x
)
print
(
a
.<
caret
>
_x
)