mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
8 lines
148 B
Python
8 lines
148 B
Python
def f(x, y):
|
|
yield 'foo'
|
|
return x, y
|
|
|
|
|
|
def g(in1, in2):
|
|
out1, out2 = <selection>yield from f(in1, in2)</selection>
|
|
print(out1, out2) |