Files
openide/python/testData/codeInsight/controlflow/DoubleTry.py
Mikhail Golubev 7c226889fc Preserve the capitalization in test data files of PyControlFlowBuilderTest
Previously, it used an odd convention with lowercased names of test data
files (with nothing separating individual words), which made adding new tests
quite tedious.

Also, I removed the test data "exit.py" as it wasn't used by any test.

GitOrigin-RevId: 92b1963c67ed01977f5b7ad020984056c9fe045d
2021-05-11 15:55:26 +00:00

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