mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 17:15:38 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
12 lines
200 B
Python
12 lines
200 B
Python
def f(x, y):
|
|
yield 'foo'
|
|
return x, y
|
|
|
|
|
|
def g(in1, in2):
|
|
out1, out2 = yield from bar(in1, in2)
|
|
print(out1, out2)
|
|
|
|
|
|
def bar(in1_new, in2_new):
|
|
return (yield from f(in1_new, in2_new)) |