Files
openide/python/testData/keywordCompletion/finallyInElse.py

8 lines
100 B
Python

def f():
try:
a = 1
except:
b = 1
else:
c = 1
fin<caret>