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