6 lines
92 B
Python
6 lines
92 B
Python
from __future__ import unicode_literals
|
|
|
|
ustr = u'Unicode'
|
|
bstr = b'Bytes'
|
|
dstr = 'Default'
|