ruff_python_formatter 0.0.3

This is an internal component crate of Ruff
Documentation
---
source: crates/ruff_python_formatter/tests/fixtures.rs
input_file: crates/ruff_python_formatter/resources/test/fixtures/ruff/expression/yield_from.py
---
## Input
```python
l = [1,2,3,4]


def foo():
    yield from l # some comment

    # weird indents
    yield\
                    from\
                        l
                    # indented trailing comment

    a = yield from l

    with (
        # Comment
        yield from l
        # Comment
    ):
        pass

    c = [(yield from l) , (
        yield from l

    )]

    while (
        yield from l
    ):
        pass

    yield (
        yield from l
    )

```

## Output
```python
l = [1, 2, 3, 4]


def foo():
    yield from l  # some comment

    # weird indents
    yield from l
    # indented trailing comment

    a = yield from l

    with (
        # Comment
        yield from l
        # Comment
    ):
        pass

    c = [(yield from l), (yield from l)]

    while (yield from l):
        pass

    yield (yield from l)
```