mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 01:11:31 +07:00
11 lines
99 B
Python
11 lines
99 B
Python
|
|
def foo():
|
|
pass
|
|
|
|
try:
|
|
foo()
|
|
except UnboundLocalError:
|
|
pass
|
|
except NameError:
|
|
pass
|