mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
If one has chosen to omit a space after comma in settings but still wants a space within braces or brackets in collection literals.
11 lines
132 B
Python
11 lines
132 B
Python
s1 = { 1,2,3, }
|
|
s2 = { 1, }
|
|
|
|
d1 = { 'foo': 1,'bar': 2,'baz': 3, }
|
|
d2 = { 'foo': 1, }
|
|
d3 = { }
|
|
|
|
l1 = [ 1,2,3, ]
|
|
l2 = [ 1, ]
|
|
l3 = [ ]
|