Changes between Initial Version and Version 1 of Ticket #7267, comment 11


Ignore:
Timestamp:
Apr 26, 2011, 8:20:55 AM (13 years ago)
Author:
Luke Plant

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/2026/index.htm Unicode character 2022]. The correct way to convert it to a unicode object is:
     1The 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:
    22{{{
    33    '\xe2\x80\xa2'.decode('utf-8')
Back to Top