Commits
Click on a commit to change the comparison rangeFix panic in D208 with multibyte indent
Fix #9080
Example, where `[]` is a 2 byte non-breaking space:
```
def f():
"""
^^^^ Real indentation is 4 chars
overindented
^^^^^^ overindentation is 6 - 4 = 2 chars due to this line
[] [] further indented
^^^^^ we take these 4 chars/5 bytes to match the docstring ...
^^^ ... and these 2 chars/3 bytes to remove the `over_indented_size` ...
^^ ... but preserve this real indent
```