Files
openide/python/testData/refactoring/introduceVariable/generatorExpressionWithCommentNotInlined.py

7 lines
115 B
Python

baz = [1, 2]
foo = bar(*<selection>(
el # comment
if el >= 0
else -el
for el in baz
)</selection>)