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.
Created on 2004年11月18日 17:48 by reowen, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg60596 - (view) | Author: Russell Owen (reowen) | Date: 2004年11月18日 17:48 | |
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 |
|||
| msg64232 - (view) | Author: Neal Norwitz (nnorwitz) * (Python committer) | Date: 2008年03月21日 05:07 | |
StandardError has been removed from Python 3.0. It's use is deprecated. Instead of catching StandardError, do: try: # ... except Exception: # ... |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:08 | admin | set | github: 41190 |
| 2008年03月21日 05:07:52 | nnorwitz | set | status: open -> closed assignee: loewis -> nnorwitz resolution: out of date messages: + msg64232 nosy: + nnorwitz |
| 2004年11月18日 17:48:24 | reowen | create | |