Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
quickFixes
/
PyMoveExceptQuickFixTest
/
exceptChain.py
blob: a1e8335f8956b324a4a1cf5e3ebae4017f771fbb [
file
] [
log
] [
blame
]
def
foo
():
pass
try
:
foo
()
except
NameError
:
pass
except
Exception
:
pass
except
<
warning descr
=
"'NameError', superclass of exception class 'UnboundLocalError', has already been caught"
>
UnboundLocalE
<
caret
>
rror
</
warning
>:
pass