mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-19 10:28:57 +07:00
10 lines
220 B
Python
10 lines
220 B
Python
|
|
def foo():
|
|
pass
|
|
|
|
try:
|
|
foo()
|
|
except NameError:
|
|
pass
|
|
except <warning descr="'NameError', superclass of exception class 'UnboundLocalError', has already been caught">Unbo<caret>undLocalError</warning>:
|
|
pass |