mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 01:53:51 +07:00
GitOrigin-RevId: 217ee91cebf600fa0035c2534d1b00878cf41858
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') |