summaryrefslogtreecommitdiff
path: root/tests/functional/u/use/use_literal_list.py
blob: 78614a49dda3ae9740d9d4ec4ef2c956668ed25d (plain)
1
2
3
4
5
6
7
8
9
# pylint: disable=missing-docstring, invalid-name

x = list()  # [use-list-literal]
x = list("string")
x = list(range(3))
x = []
x = ["string"]
x = [1, 2, 3]
x = [range(3)]