[issue4652] IDLE does not work with Unicode

Guilherme Polo report at bugs.python.org
Mon Aug 3 05:20:50 CEST 2009


Guilherme Polo <ggpolo at gmail.com> added the comment:

I can't seem to reproduce that, maybe it could be a tk issue ?

Can you try writing anything (that doesn't work on IDLE) on a
tkinter.Text widget to see if it shows there ? You could use this code
below:

from tkinter import Text

text = Text()
print(text.tk.call('info', 'patchlevel'))
text.focus_set()
text.pack()
text.mainloop()

----------

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


More information about the Python-bugs-list mailing list