mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-12 13:07:01 +07:00
6 lines
151 B
Python
6 lines
151 B
Python
def f():
|
|
try:
|
|
print('something')
|
|
except Exception as <caret>e:
|
|
# ... Code that does not use 'e'
|
|
print('something else') |