mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
8 lines
98 B
Python
8 lines
98 B
Python
baz = [1, 2]
|
|
a = (
|
|
el # comment
|
|
if el >= 0
|
|
else -el
|
|
for el in baz
|
|
)
|
|
foo = bar(*a) |