[lang-ref] ( source_statement_separator ) ( python )

def test_source_statement_separator():
    a = 1          # separate with newline
    a += 1; a += 1 # separate with ';'
    assert a == 3