]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/black/tests/data/python2_unicode_literals.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 / python2_unicode_literals.py
1 #!/usr/bin/env python2
2 from __future__ import unicode_literals as _unicode_literals
3 from __future__ import absolute_import
4 from __future__ import print_function as lol, with_function
5
6 u'hello'
7 U"hello"
8 Ur"hello"
9
10 # output
11
12
13 #!/usr/bin/env python2
14 from __future__ import unicode_literals as _unicode_literals
15 from __future__ import absolute_import
16 from __future__ import print_function as lol, with_function
17
18 "hello"
19 "hello"
20 r"hello"