Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
UnboundDefinedInTryUsedAfterExcept.py
blob: 4afc68009bd35a3e8b67097ded39617b03892c19 [
file
] [
log
] [
blame
]
def
a2
():
try
:
a
=
2
except
Exception
:
pass
print
(<
warning descr
=
"Local variable 'a' might be referenced before assignment"
>
a
</
warning
>)
#fail