Files
openide/python/testData/codeInsight/controlflow/doubletry.py
T

12 lines
140 B
Python

try:
from mercurial import lsprof
except ImportError:
raise Error
p = 123
try:
return foo
x = 1
finally:
print(p)
y = 2