```>>> six.text_type(b'中文') Traceback (mo...
# development
w
Copy code
>>> six.text_type(b'中文')
Traceback (most recent call last):
  File "<console>", line 1, in <module>
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position 0: ordinal not in range(128)
>>> six.text_type
<type 'unicode'>