X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47480ca33143b250cb33ba501f201838269173ce..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/tests/data/cases/string_prefixes.py diff --git a/.vim/bundle/black/tests/data/cases/string_prefixes.py b/.vim/bundle/black/tests/data/cases/string_prefixes.py deleted file mode 100644 index f86da696..00000000 --- a/.vim/bundle/black/tests/data/cases/string_prefixes.py +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env python3 - -name = "Łukasz" -(f"hello {name}", F"hello {name}") -(b"", B"") -(u"", U"") -(r"", R"") - -(rf"", fr"", Rf"", fR"", rF"", Fr"", RF"", FR"") -(rb"", br"", Rb"", bR"", rB"", Br"", RB"", BR"") - - -def docstring_singleline(): - R"""2020 was one hell of a year. The good news is that we were able to""" - - -def docstring_multiline(): - R""" - clear out all of the issues opened in that time :p - """ - - -# output - - -#!/usr/bin/env python3 - -name = "Łukasz" -(f"hello {name}", f"hello {name}") -(b"", b"") -("", "") -(r"", R"") - -(rf"", rf"", Rf"", Rf"", rf"", rf"", Rf"", Rf"") -(rb"", rb"", Rb"", Rb"", rb"", rb"", Rb"", Rb"") - - -def docstring_singleline(): - R"""2020 was one hell of a year. The good news is that we were able to""" - - -def docstring_multiline(): - R""" - clear out all of the issues opened in that time :p - """