mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
21 lines
297 B
Python
21 lines
297 B
Python
def foo1():
|
|
a = 1
|
|
try:
|
|
for i in range(10):
|
|
pass
|
|
except Exception:
|
|
pass
|
|
finally:
|
|
b = a #pass
|
|
|
|
|
|
def foo2():
|
|
a = 1
|
|
try:
|
|
for i in range(10):
|
|
pass
|
|
except Exception:
|
|
c = a #pass
|
|
finally:
|
|
b = a #pass
|