Changes between Initial Version and Version 1 of Ticket #7267, comment 11
- Timestamp:
- Apr 26, 2011, 8:20:55 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7267, comment 11
initial v1 1 The issue regarding `'\xe2\x80\xa2'` does need to be addressed. This is a UTF-8 bytestring sequence for [http://www.fileformat.info/info/unicode/char/202 6/index.htm Unicode character 2022]. The correct way to convert it to a unicode object is:1 The issue regarding `'\xe2\x80\xa2'` does need to be addressed. This is a UTF-8 bytestring sequence for [http://www.fileformat.info/info/unicode/char/2022/index.htm Unicode character 2022]. The correct way to convert it to a unicode object is: 2 2 {{{ 3 3 '\xe2\x80\xa2'.decode('utf-8')