Files
openide/python/testData/formatter/hangClosingOffComprehensionsAndGeneratorExpressions.py

24 lines
229 B
Python

xs1 = [
x
for x in range(10)
if True
]
xs2 = {
x
for x in range(10)
if True
}
xs3 = {
x: None
for x in range(10)
if True
}
xs4 = (
x
for x in range(10)
if True
)