blob: 68f5fb79a55d3602d0fb5e3c36fa3e22659ab373 [file] [log] [blame]
""" Test that using starred nodes in unpacking
does not trigger a false positive on Python 3.
"""
__revision__ = 1
def test():
""" Test that starred expressions don't give false positives. """
first, second, *last = (1, 2, 3, 4)
*last, = (1, 2)
return (first, second, last)