mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 23:52:27 +07:00
GitOrigin-RevId: d48d96ba69345ec949272b56635c2efc8b3b433c
11 lines
153 B
Python
11 lines
153 B
Python
def f():
|
|
a = do_smth()
|
|
b1 = foo(a)
|
|
a = do_smth()
|
|
b = foo(a + 1)
|
|
do_smth_with(b1, b)
|
|
|
|
|
|
def foo(a_new):
|
|
return do_smth_with(a_new)
|