Terry J. Reedy added the comment: I am puzzled at the following. Some reported today that IDLE crashed when pasting the Snake emoji U+1F40D 🐍. I copied from Thunderbird and pasted in IDLE on Win10, with same UnicodeDecodeError as before. I then ran this simple code
from tkinter import * # 3.4, 3.5, 2.7 with Tkinter root = Tk() text = Text(root) text.pack() text.focus_set() # required to work root.mainloop() pasted the char there, and to my surprise, a black & white version of the snake appeared. How? I thought tk does not support astral chars? I copied from the Text window to paste above, where it is green for me. ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue13153> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com