Open mgedmin opened 9 years ago
Unicode strings full of non-ASCII characters are rendered as u'\uXXXX\uXXXX\uXXXX ...' which is unreadable. Please render printable characters (such as accented Latin or Cyrillic letters) as themselves. Python 3's __repr__ does this right.
__repr__
In a sense this bug will become irrelevant in 2020 when Python 2.7 dies forever.
Unicode strings full of non-ASCII characters are rendered as u'\uXXXX\uXXXX\uXXXX ...' which is unreadable. Please render printable characters (such as accented Latin or Cyrillic letters) as themselves. Python 3's
__repr__
does this right.