Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyProtectedMemberInspection
/
truePositive.py
blob: 979cfd9a5eadac954590a30757435ea3313831f9 [
file
] [
log
] [
blame
]
__author__
=
'ktisha'
class
A
:
def
__init__
(
self
):
self
.
_a
=
1
def
foo
(
self
):
self
.
b
=
1
print
<
weak_warning descr
=
"Access to a protected member _a of a class"
>
A
().
_a
</
weak_warning
>