X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/ff2e5dd6e6bae98ac8cf2abbb7cb2f0045042cd8..5d0a469e8e2a6b83163ea27c9da654cb97f05e8a:/black.py diff --git a/black.py b/black.py index 6db661c..35daaa9 100644 --- a/black.py +++ b/black.py @@ -2549,6 +2549,12 @@ def normalize_string_quotes(leaf: Leaf) -> None: leaf.value = f"{prefix}{orig_quote}{body}{orig_quote}" new_body = sub_twice(escaped_orig_quote, rf"\1\2{orig_quote}", new_body) new_body = sub_twice(unescaped_new_quote, rf"\1\\{new_quote}", new_body) + if "f" in prefix.casefold(): + matches = re.findall(r"[^{]\{(.*?)\}[^}]", new_body) + for m in matches: + if "\\" in str(m): + # Do not introduce backslashes in interpolated expressions + return if new_quote == '"""' and new_body[-1:] == '"': # edge case: new_body = new_body[:-1] + '\\"'