ruff_python_formatter 0.0.2

This is an internal component crate of Ruff
Documentation
while 34: # trailing test comment
    pass # trailing last statement comment

    # trailing while body comment

# leading else comment

else: # trailing else comment
    pass

    # trailing else body comment


while aVeryLongConditionThatSpillsOverToTheNextLineBecauseItIsExtremelyLongAndGoesOnAndOnAndOnAndOnAndOnAndOnAndOnAndOnAndOn: # trailing comment
    pass

else:
    pass

while (
    some_condition(unformatted, args) and anotherCondition or aThirdCondition
):  # comment
    print("Do something")


while (
    some_condition(unformatted, args) # trailing some condition
    and anotherCondition or aThirdCondition  # trailing third condition
):  # comment
    print("Do something")

while True: pass
    # 1
else:
    pass

while True:
    pass
        # 2
else:
    pass

while True: pass
# 3
else:
    pass

while True: pass
    # 4
else:
    pass

def foo():
    while True:
        pass
# 5
    else:
        pass

while True:
    first;second
    # 6
else:
    pass