blob: def78867eea19f75c6fbca94a499d903ef0d4d47 [file] [edit]
def f(): pass
# comment after a compact def
def g():
if True: pass
# comment after a nested compact if
def h():
for x in [1]: pass
# comment after a nested compact for
def i(): pass
# comment between a compact def and a statement
x = 1