X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785:/.vim/bundle/black/tests/data/fstring.py..refs/heads/master:/.vim/bundle/black/tests/data/cases/static/git-logo.png diff --git a/.vim/bundle/black/tests/data/fstring.py b/.vim/bundle/black/tests/data/fstring.py deleted file mode 100644 index 4b33231..0000000 --- a/.vim/bundle/black/tests/data/fstring.py +++ /dev/null @@ -1,21 +0,0 @@ -f"f-string without formatted values is just a string" -f"{{NOT a formatted value}}" -f"{{NOT 'a' \"formatted\" \"value\"}}" -f"some f-string with {a} {few():.2f} {formatted.values!r}" -f'some f-string with {a} {few(""):.2f} {formatted.values!r}' -f"{f'''{'nested'} inner'''} outer" -f"\"{f'{nested} inner'}\" outer" -f"space between opening braces: { {a for a in (1, 2, 3)}}" -f'Hello \'{tricky + "example"}\'' - -# output - -f"f-string without formatted values is just a string" -f"{{NOT a formatted value}}" -f'{{NOT \'a\' "formatted" "value"}}' -f"some f-string with {a} {few():.2f} {formatted.values!r}" -f'some f-string with {a} {few(""):.2f} {formatted.values!r}' -f"{f'''{'nested'} inner'''} outer" -f"\"{f'{nested} inner'}\" outer" -f"space between opening braces: { {a for a in (1, 2, 3)}}" -f'Hello \'{tricky + "example"}\''