summaryrefslogtreecommitdiff
path: root/test/input/func_w0632.py
blob: 6437a50bc44995c245ffb697df410be5e5d19296 (plain)
1
2
3
4
5
6
7
8
"""Check possible unbalanced tuple unpacking """

__revision__ = 0

def do_stuff():
    """This is not right."""
    first, second = 1, 2, 3
    return first + second