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