This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gpolo
Recipients gpolo, zzyzx
Date 2009-08-03.03:20:48
SpamBayes Score 1.7795905e-07
Marked as misclassified No
Message-id <1249269650.02.0.165849798055.issue4652@psf.upfronthosting.co.za>
In-reply-to
Content
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()
History
Date User Action Args
2009-08-03 03:20:50gpolosetrecipients: + gpolo, zzyzx
2009-08-03 03:20:50gpolosetmessageid: <1249269650.02.0.165849798055.issue4652@psf.upfronthosting.co.za>
2009-08-03 03:20:48gpololinkissue4652 messages
2009-08-03 03:20:48gpolocreate