mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
This setting also applies to the corresponding comprehensions and parenthesized generator expressions for consistency. Also, I grouped two similar options together in settings.
52 lines
347 B
Python
52 lines
347 B
Python
l = [
|
|
1,
|
|
2,
|
|
3
|
|
]
|
|
|
|
lc = [
|
|
x
|
|
for x
|
|
in range(42)
|
|
if x
|
|
]
|
|
|
|
s = {
|
|
1,
|
|
2,
|
|
3
|
|
}
|
|
|
|
sc = {
|
|
x
|
|
for x
|
|
in range(42)
|
|
if x
|
|
}
|
|
|
|
t = (
|
|
1,
|
|
2,
|
|
3
|
|
)
|
|
|
|
g = (
|
|
x
|
|
for x
|
|
in range(42)
|
|
if x
|
|
)
|
|
|
|
d = {
|
|
1: True,
|
|
2: False,
|
|
3: None
|
|
}
|
|
|
|
dc = {
|
|
x: None
|
|
for x
|
|
in range(42)
|
|
if x
|
|
}
|