ruff_python_formatter 0.0.6

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/fmt_on_off/comments.py
---
## Input
```python
pass

# fmt: off
  # A comment that falls into the verbatim range
a +   b # a trailing comment

# in between comments

# function comment
def test():
    pass

  # under indent

    def nested():
        ...

        # trailing comment that falls into the verbatim range
      # trailing outer comment
  # fmt: on

a +   b

def test():
    pass
    # fmt: off
    # a trailing comment

```

## Output
```python
pass

# fmt: off
  # A comment that falls into the verbatim range
a +   b # a trailing comment

# in between comments

# function comment
def test():
    pass

  # under indent

    def nested():
        ...

        # trailing comment that falls into the verbatim range
      # trailing outer comment
  # fmt: on

a + b


def test():
    pass
    # fmt: off
    # a trailing comment
```