mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
14 lines
127 B
Python
14 lines
127 B
Python
|
|
def foo():
|
|
pass
|
|
|
|
|
|
try:
|
|
foo()
|
|
except UnboundLocalError:
|
|
pass
|
|
except NameError:
|
|
pass
|
|
except Exception:
|
|
pass
|