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