Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
quickFixes
/
PyMakePublicQuickFixTest
/
positive_after.py
blob: 747456fbefe6f76eb3424baa101735d04224fb02 [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
):
self
.
x
=
1
def
_foo
(
self
):
print
(
self
.
x
)
a
=
A
()
a
.
_foo
()
print
(
a
.
x
)