mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
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')
|