mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 09:36:56 +07:00
13 lines
252 B
Python
13 lines
252 B
Python
|
|
def foo():
|
|
pass
|
|
|
|
|
|
try:
|
|
foo()
|
|
except NameError:
|
|
pass
|
|
except Exception:
|
|
pass
|
|
except <warning descr="'NameError', superclass of the exception class 'UnboundLocalError', has already been caught">UnboundLocalE<caret>rror</warning>:
|
|
pass |