black/tests/data/python2_unicode_literals.py
2018-06-06 15:48:38 -07:00

17 lines
193 B
Python

#!/usr/bin/env python2
from __future__ import unicode_literals
u'hello'
U"hello"
Ur"hello"
# output
#!/usr/bin/env python2
from __future__ import unicode_literals
"hello"
"hello"
r"hello"