Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
UnboundExceptAs.py
blob: e9682e0b75b82462d1bd278c141310e4c5a26373 [
file
] [
log
] [
blame
]
def
f
():
try
:
raise
KeyError
(
"ms"
)
except
KeyError
as
e
:
print
(
e
)
#pass
print
(<
warning descr
=
"Local variable 'e' might be referenced before assignment"
>
e
</
warning
>)
#fail