[issue13153] IDLE crashes when pasting non-BMP unicode char on Py3

Terry J. Reedy report at bugs.python.org
Mon Jul 22 23:58:10 CEST 2013


Terry J. Reedy added the comment:

In 3.3.2, 3.4.0 the traceback says that the invalid continuation byte (immediately, when '𐒢' is pasted) is ED. Snipped version is
  File "F:\Python\dev\py33\lib\tkinter\__init__.py", line 1071, 
    self.tk.mainloop(n)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xed in position 1:

As I understand utf-8 from, for instance, the wikipedia article, continuation bytes are 0b10xxxxxx, or A0 to BF and definitely not ED.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13153>
_______________________________________


More information about the Python-bugs-list mailing list