Files
2020-07-21 10:42:32 +00:00

6 lines
151 B
Python

def f():
try:
print('something')
except Exception as <caret>e:
# ... Code that does not use 'e'
print('something else')