[lang-ref] ( init_tuple ) ( python )

def test_init_tuple():
    # ( .. )

    r1 = 1, 2, 3
    r2 = (1, 2, 3)

    assert type(r1) is tuple
    assert type(r2) is tuple