Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyGlobalUndefinedInspection
/
truePositive.py
blob: d34a29765a7d26327da3e7ede643bde9c0529353 [
file
] [
log
] [
blame
]
__author__
=
'ktisha'
def
foo
():
global
<
weak_warning descr
=
"Global variable 'bar' is undefined at the module level"
>
bar
</
weak_warning
>
print
bar
foo
()