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