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