]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/black/tests/data/string_prefixes.py

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add '.vim/bundle/black/' from commit '2f3fa1f6d0cbc2a3f31c7440c422da173b068e7b'
[etc/vim.git] / .vim / bundle / black / tests / data / string_prefixes.py
1 #!/usr/bin/env python3.6
2
3 name = R"Łukasz"
4 F"hello {name}"
5 B"hello"
6 r"hello"
7 fR"hello"
8
9
10 def docstring_singleline():
11     R"""2020 was one hell of a year. The good news is that we were able to"""
12
13
14 def docstring_multiline():
15     R"""
16     clear out all of the issues opened in that time :p
17     """
18
19
20 # output
21
22
23 #!/usr/bin/env python3.6
24
25 name = R"Łukasz"
26 f"hello {name}"
27 b"hello"
28 r"hello"
29 fR"hello"
30
31
32 def docstring_singleline():
33     R"""2020 was one hell of a year. The good news is that we were able to"""
34
35
36 def docstring_multiline():
37     R"""
38     clear out all of the issues opened in that time :p
39     """