X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/bbe5ae70c17ff16801fef240f49b707535c7f64c..6d8b90167b00707c5524f993933e33ddbd5a90f6:/tests/data/string_prefixes.py?ds=sidebyside diff --git a/tests/data/string_prefixes.py b/tests/data/string_prefixes.py index fbad5e0..0ca3686 100644 --- a/tests/data/string_prefixes.py +++ b/tests/data/string_prefixes.py @@ -3,12 +3,16 @@ name = R"Łukasz" F"hello {name}" B"hello" +r"hello" +fR"hello" # output #!/usr/bin/env python3.6 -name = r"Łukasz" +name = R"Łukasz" f"hello {name}" b"hello" +r"hello" +fR"hello"