1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-28 01:00:05 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/python/nested_collections.py

42 lines
340 B
Python
Raw Normal View History

a = [
1,
[
2,
[
3
]
]
]
b = [
1, [[
3
],
]
]
c = [[[
3
]]]
d = {
'a': [
2, 3
],
'c': (
[1, 2, 3],
[
2,
4
], {
6,
8
}
)
}
e = (1, 2,
3, 4,
5, 6
)