Files
openide/python/testData/formatter/hangClosingBracketsInCollectionLiterals.py
2017-01-13 11:58:33 +03:00

24 lines
142 B
Python

xs1 = [
1,
2,
3
]
xs2 = {
1,
2,
3
}
xs3 = {
1: None,
2: None,
3: None,
}
xs4 = (
1,
2,
3
)