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 jepler
Recipients
Date 2002-12-11.12:54:26
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=2772

Here's an example of the type of error which is discarded by
Tkinter._tkerror:

from Tkinter import Button
b = Button(command="expr 1/0")
b.pack()
b.mainloop()

When "b" is pressed, "expr" will produce an "Error: divide
by zero", and the equivalent wish app will show the bgerror
dialog.  But replaces the normal bgerror handler with one
that discards the error, doing nothing.

Of course, I've pointed out in an earlier comment how
idiscovery can subclass Tk to handle this kind of error.
History
Date User Action Args
2008-01-20 09:55:48adminlinkissue639266 messages
2008-01-20 09:55:48admincreate