[lang-ref] ( init_array_allows_last_comma ) ( python )

def test_init_array_allows_last_comma():
    # Yes
    items = [
        1,
        2,
        3,
    ]
    assert len(items) == 3