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 reowen
Recipients
Date 2004-11-18.17:48:24
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Tkinter.TclError = _tkinter.TclError should be a subclass of 
StandardError, instead of just Exception.

This would allow easier error checking, e.g. GUI code that doesn't 
want to catch SystemExit or Warnings, e.g.:
try:
   some mixed Tkinter and normal python code
except StandardError:
   bail out gracefully
History
Date User Action Args
2008-01-20 09:57:16adminlinkissue1068881 messages
2008-01-20 09:57:16admincreate