summaryrefslogtreecommitdiff
path: root/pylint/test/functional/star_needs_assignment_target_py35.py
blob: d2801debfd7dfd121ed55b944efeb593c347ad37 (plain)
1
2
3
4
5
6
7
8
9
10
"""
Test PEP 0448 -- Additional Unpacking Generalizations
https://www.python.org/dev/peps/pep-0448/
"""
UNPACK_TUPLE = (*range(4), 4)
UNPACK_LIST = [*range(4), 4]
UNPACK_SET = {*range(4), 4}
UNPACK_DICT = {'a': 1, **{'b': '2'}}
UNPACK_DICT2 = {**UNPACK_DICT, "x": 1, "y": 2}
UNPACK_DICT3 = {**{'a': 1}, 'a': 2, **{'a': 3}}