Files
openide/python/testData/refactoring/rename/renameLocalWithNestedGenerators.py
2011-03-23 20:29:15 +01:00

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)