mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
11 lines
196 B
Python
11 lines
196 B
Python
def f(xs):
|
|
found = False
|
|
found = yield from bar(found, xs)
|
|
print(found)
|
|
|
|
|
|
def bar(found_new, xs_new):
|
|
for x in xs_new:
|
|
yield x
|
|
found_new = True
|
|
return found_new |