X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3f68af9813542a5e277b7a51b316644241c372d7..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/tests/data/string_prefixes.py?ds=sidebyside diff --git a/.vim/bundle/black/tests/data/string_prefixes.py b/.vim/bundle/black/tests/data/string_prefixes.py new file mode 100644 index 0000000..9ddc2b5 --- /dev/null +++ b/.vim/bundle/black/tests/data/string_prefixes.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python3.6 + +name = R"Łukasz" +F"hello {name}" +B"hello" +r"hello" +fR"hello" + + +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.6 + +name = R"Łukasz" +f"hello {name}" +b"hello" +r"hello" +fR"hello" + + +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 + """