Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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