[lang-ref] Assign to multi variable ( when rhs is short ) ( python )

def test_assign_to_multi_variable_but_rhs_is_short():
    # ValueError
    with pytest.raises(ValueError):
        (a, b, c) = [1, 2] # ValueError: not enough values to unpack (expected 3, got 2)