summaryrefslogtreecommitdiff
path: root/pylint/test/functional/star_needs_assignment_target_py35.py
blob: 7188c5598db4fbc6351e4796e3c99d30de6b6871 (plain)
1
2
3
4
5
6
7
"""
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_DICT = {*range(4), 4}