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