Files
ruff/crates/ruff_python_ast/src
Charlie Marsh 8e06140d1d Remove continuations when deleting statements (#5198)
## Summary

This PR modifies our statement deletion logic to delete any preceding
continuation lines.

For example, given:

```py
x = 1; \
  import os
```

We'll now rewrite to:

```py
x = 1;
```

In addition, the logic can now handle multiple preceding continuations
(which is unlikely, but valid).
2023-06-19 22:04:28 -04:00
..
2023-06-19 21:09:53 +00:00
2023-06-19 21:09:53 +00:00
2023-06-08 17:19:56 +00:00
2023-06-08 05:53:14 +00:00
2023-06-19 21:09:53 +00:00
2023-06-19 21:09:53 +00:00
2023-06-19 21:09:53 +00:00
2023-05-31 08:26:35 +00:00
2023-06-19 21:09:53 +00:00