Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
a3e39abd38575b02d52f05e041d797023938b6d6
/
.
/
python
/
testData
/
quickFixes
/
PyMakePublicQuickFixTest
/
positive.py
blob: ebf34683ffaa650b6fba92f358b50b19b15ffc2d [
file
] [
log
] [
blame
]
Tor Norbye
a3e39ab
2014-04-10 10:54:17 -0700
[
diff
] [
blame^
]
1
class
A
:
2
def
__init__
(
self
):
3
self
.
_x
=
1
4
5
def
_foo
(
self
):
6
print
(
self
.
_x
)
7
8
a
=
A
()
9
a
.
_foo
()
10
11
print
(
a
.<
caret
>
_x
)