Files
openide/python/testData/refactoring/rename/renameLocalWithNestedGenerators.py

4 lines
108 B
Python

def somefunc():
xx, yy = 1, 1
gen_object = (xx for y<caret>y in lst1 for xx in yy)
print(xx, yy)