Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
codeInsight
/
controlflow
/
doubletry.py
blob: 9271efbbb6a35b909f723a8ab1d0d7adc00a5ff3 [
file
] [
log
] [
blame
]
try
:
from
mercurial
import
lsprof
except
ImportError
:
raise
Error
p
=
123
try
:
return
foo
x
=
1
finally
:
print
(
p
)
y
=
2