mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 3d4abb05167e85cb44720e36d0fa3b949f199f30
16 lines
219 B
Python
16 lines
219 B
Python
def fn_with_except():
|
|
try:
|
|
raise Exception()
|
|
except:
|
|
pass
|
|
|
|
|
|
def test_except():
|
|
fn_with_except()
|
|
fn_with_except()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
test_except()
|
|
print('TEST SUCEEDED')
|