1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 00:50:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/python/line_after_indent.py

66 lines
465 B
Python
Raw Normal View History

(
a,
b
)
foo.bar(
a, b
)
foo = [
1,
2,
3
]
foo = {
"a": 1,
"b": 2,
"c": 3
}
foo = {
1,
2,
3,
}
foo = (
1 + 2
)
(
a for a in range(0, 10)
)
foo = [
a for a in range(0, 10)
]
foo = {
a for a in range(0, 10)
}
foo = {
a: b for a, b in items
}
foo.bar(
"baz")
[
a + b for (
a,
b
)
in items
]
[
a + b for [
a,
b
]
in items
]