Files
openide/python/testData/refactoring/extractmethod/Yield.before.py

6 lines
122 B
Python

def f(xs):
found = False
<selection>for x in xs:
yield x
found = True</selection>
print(found)